JohnnyC1951 wrote:
Tested in IE and Firefox. Great templates! - but I always have problems with bullets in K2 with all your templates and always have to add code to override.css to get a STANDARD HTML ul li bullets to show.
I hope this helps.
I have found the problem for the circles not showing...
In the files typography.style1.css typography.style2.css and typography.style3.css..
The bullets which do show look like this
- Code: Select all
ul.gkBullet1 li,div.articleContent ul li, div.productdetails-view ul li {
The ones that DONT SHOW look like this
(because K2 doesn't have divs with class "article-content"):
- Code: Select all
div.articleContent ul.gkBullet2 li {
This part is missing:
- Code: Select all
ul.gkBullet1 li,
This explains why they dont show up in K2.
I looked at several templates and they are all the same.
To get the generic ul li working I had to modify it like this by adding ul li,:
- Code: Select all
/* unordered lists */
ul li,ul.gkBullet1,ul.gkBullet2,ul.gkBullet3,ul.gkBullet4,ul.gkCircle1,ul.gkCircle2,ul.gkSquare1,ul.gkSquare2,ul.gkSquare3 ,div.articleContent ul,
div.productdetails-view ul {
margin: 2em 0;
padding: 0;
}
ul li {
list-style-position: outside;
}
ul li, ul.gkBullet1 li,ul.gkBullet2 li,ul.gkBullet3 li,ul.gkBullet4 li,ul.gkCircle1 li,ul.gkCircle2 li,ul.gkSquare1 li,ul.gkSquare2 li,div.articleContent ul li, div.productdetails-view ul li {
margin: 0 !important;
padding: 2px 0 2px 28px;
line-height: 1.8em !important;
list-style-position: inside;
overflow: inherit;
}