In stylesheet.css, you need to remove these lines (around line 598):
Code:
a.category-top, a.category-top:visited
{
color: #008000;
text-decoration: none;
}
...but that won't fix it.
You also need to rename stylesheet_BAK.css to something that doesn't start with 'stylesheet', or alternatively, doesn't end with '.css'.
From the documentation (/docs directory):
style*.css // are always loaded and at least ONE should contain site-wide properties.
'stylesheet_BAK.css' matches 'style*.css' so it gets loaded too - and it gets loaded after stylesheet.css so any changes you make to that stylesheet will get ignored. Try renaming it to something like 'BAK_stylesheet.css'.
BrandTim