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.








Thanks for this - just upgraded to K2 RC6, and good to have the bullets back.