Hello!
I want to make it easier for people to see where they are. Can I highlight the menu entry of the page which is acutally displayed (i.e. different background color)? If yes, what do I have to change?
Thanks in advance for your help!
can I highlight the menu item of the actually displayed page?
Re: can I highlight the menu item of the actually displayed page?
Yes you can
and check that html output has that class for menu items...
Code: Select all
#menu li a.active {
background-color:pink;
}
Re: can I highlight the menu item of the actually displayed page?
I tried that already. But the "a active" tag just highlights the link as long as I hold the mouse button down. But it doesn't remain highlighted...
Re: can I highlight the menu item of the actually displayed page?
a:active and a.active are two different things