By cjm on
i noticed how the default theme (bluemarine) has the ability to show the currently selected menu (the menu item appears bold)
i would like to create a theme that takes advatange of this ability using a little css to highlight the background instead of it just appearing bold.
can anyone help me out with this?
Comments
self response
got it... its the .active class.
unfortunately it appears that the top menu links are also set as active for some reason.
CSS selectors
You can use descendant CSS selectors to select only active links in the menu.
E.g. .menu .active { color: red; }
--
If you have a problem, please search before posting a question.