Highlighting Active Page

Hello,

Here is a page…

http://modocom.ca/k9club/about-us/

In my CSS trying to highlight in the left hand the active one the current page your one with orange text but it does not seem to be working at all. I’ve done it several times before but not working at all right now.

Thanks,

Mike

there are several straight CSS techniques, BUT… since you are using Word Press, I would just do

.current-menu-item {… your rules }

or on the odd chance that you need that to be more specific , # mobmenuright li.current-menu-item {… your rules }
hope that helps

Thanks,

This is what I have and doesnt seem to work unless it taking a while to update…

li.current-menu-item, li.current_page_item {
color: #FF462D !important;
}

You need to style the link, not the LI:

li.current-menu-item [COLOR="#FF0000"]a[/COLOR] {
   color: #FF462D !important;
}