Title says it all really. I'd like to highlight the current page in the horizontal menu but I can't seem to isolate the style. Any easy way to do this? Where can I edit the "wp_page_menu" function? Will that help me. I can see that there is a current_page_item class but it's also conected with another class so I can't seem to define it's style.
Appreciate any help - great framework by the way
Regards
John
Is there anyway to highlight the current page in the menu?
(3 posts) (2 voices)-
Posted 9 months ago #
-
Try this:
.current_page_item a { background: #000; color: #fff; }
.current_page_item a:hover { background: #fff; color: #000; }To see what default styles WP Framework applies, look into base.css
Posted 9 months ago # -
Worked first time - thanks very much.
Posted 9 months ago #
Reply
You must log in to post.