Fix no bullets on k2 1.0 RC6

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.

Related posts:

  1. Get Threaded Comments on your Blog
  2. Remove Border from smiley images in Wordpress
  3. Align Images in your Blog posts
  4. Hacking Brian’s Threaded Comments Plugin
  5. Replace wordpress search with Google Adsense for Search

One response to “Fix no bullets on k2 1.0 RC6”

  1. Anthony

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

Leave a Reply

You can wrap codes in comments using [langcode]code[/langcode] tag. Common Language Codes like html, css, xhtml, sql, php, jscript, diff, patch, etc. are supported.