For a user-friendly menu, we may like to highlight the menu option which opened a specific post,page or category
I found a solution to highlight menu for pages:
To highlight an opened page, no problem, there is built-in class for WP so we can use css
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
background: TEAL;
background: url("images/your-button-background-to-highlight.gif") no-repeat;
}
To highlight menu for a single post or for a category, we will not find CSS to control this because there is no class ready in WP, neither Thematic. Weird!
So maybe we can create a class, something like current_post and current_category
Any suggestions?