Log in

View Full Version : JQuerry Multilevel CSS menu



Paramasivan
05-01-2011, 05:50 PM
Can you please inform me how to retain the hover state of the main menu if the cursor is in its sub-menus.

Thank you in advance.

Paramasivan
05-02-2011, 11:38 PM
As informed by Mr.Nile (Jeremy Fifty), following trials made.

.jqueryslidemenu ul li a:hover{
background: black; /*tab link background during hover state*/
color: white;
}

and changed them to:

.jqueryslidemenu ul li a:hover, .jqueryslidemenu ul li:hover a{
background: black; /*tab link background during hover state*/
color: white;
}

AND

.jqueryslidemenuz ul li ul li a:hover

to

.jqueryslidemenuz ul li ul li a:hover, .jqueryslidemenuz ul li ul li:hover a

{.jqueryslidemenuz supposed to be .jqueryslidemenu }

Still not working. The sub-menus retain the hover state of the main menu, and during hover on the sub-menu, then that menu alone display is sub-menu hover state.

Any ideas?

Thank you,