Issue: If you use our theme. Your site will takes the format of html tags in the description of the product or the content page.
Solution: Because our theme use the boostrap. It overrided these format tags.
You can add the code css below to use format the tag in your file css (/skin/frontend/default/sm_theme/css/theme.css)
eg the tags: h1, h2, h3, ul, li, b…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.your_class_suffix ul{
list-style:disc inside none;
}
.your_class_suffix h1{
font-size:36px; font-weight: bold; margin: .67em 0 ;
}
.your_class_suffix h2{
font-size:24px; font-weight: bold; margin: .75em 0 ;
}
.your_class_suffix h3{
font-size:21px; font-weight: bold; margin: .83em 0;
}
.your_class_suffix h4{
font-size:18px; font-weight: bold; margin: 1.5em 0;
}
.your_class_suffix h5{
font-size:16px; font-weight: bold; margin: 1.67em 0 ;
}
.your_class_suffix h6{
font-size:14px; font-weight: bold;
}
.your_class_suffix p{margin:12px 0;}
|