By daja on
Hello, I use a customized theme made by ownselves.
When I click on a item in the menu (in the block), I would like that the color or the style of the menu item changes.
So it is easier for users to knows where they are.
It is done e.g. on the drupal handbook pages where the clicked menu item is black and bold.
Where can I handle this? In the css or with a module?
Comments
Normally, an active menu
Normally, an active menu link will have the CSS class "active", so you can do this via CSS.
it works
Thanks a lot, it works fine. I added in my css:
li a.active { font-weight:bold; }
Don't forget to empty the navigator cache!