Automatic menu showing on hover (mouse) over
Posted: 2015-03-21 20:42
Have you ever wanted the menu to show as soon as your mouse moves over it? (The jump to menu and admin menus for example)
It is easy to do. The way I do it is to add the following line to the dynamic.ccs.php file.
You can put it anywhere but it may be best to put it around line 14. Right under the other li.dropdown line.
It is a cheap and dirty way to do it. May cause some display issues with a tablet or smartphone so make the change then test with all instances and see if it is what you want. Seems to work well with all my databases.
Alan
It is easy to do. The way I do it is to add the following line to the dynamic.ccs.php file.
Code: Select all
li.dropdown:hover ul {display:block;}
It is a cheap and dirty way to do it. May cause some display issues with a tablet or smartphone so make the change then test with all instances and see if it is what you want. Seems to work well with all my databases.
Alan