Tags: k2, k2 theme, tutorial, tutorials, Useful Tips, Wordpress, Wordpress Themes
k2 theme’s latest version has a big bug in the form of no bullet style for unordered lists(ul tag). Actually this was a mistake that crept when Eric Meyer’s reset css was applied to the core css of k2 theme. To fix this bug, open core.css.php (../k2/css/core.css.php) and search & replace from line 29 to the 31:
ol, ul {
list-style: none;
}
to
ol, ul {
/* list-style: none; */
}
This should fix this simple bug.
RSS feed for comments on this post. TrackBack URL
July 15, 2008 at 8:58 pm
Thanks for this - just upgraded to K2 RC6, and good to have the bullets back.
[Reply]