Hi.
I'm working on a blog that is currently in maintenance mode, and I've been trying to highlight the active category in the category bar but it just doesn't seem to be working. I've tried adding this to css:
HTML Code:
#menu2 ul.rMenu li a:link,
#menu2 ul.rMenu li a:visited {
background: #000 !important;
color: #999 !important;
}
#menu2 ul.rMenu li a:hover,
#menu2 ul.rMenu li a:active {
background: #000 !important;
color: #fff !important;
}
I am able to control the default, visited, and hover colors with the above code, but not the active color. I also tried this code:
HTML Code:
li.current-cat {
color: #123456;
}
But that didn't work either. I'm wondering, if there is no way to highlight the active category, is there a way that I can just put the name of the category above the posts when you're in the category page? For instance, if I click on the category "News" can I place text above the posts within this category that says "You're viewing posts categorized as 'News'" ? I'd just like some way to distinguish the active category so that readers know where they are within the blog.