Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Display Submenu Dropdown On Hover Re: Display Submenu Dropdown On Hover

#110752
Senff
Participant

You haven’t specified an action to show the submenu on hover — it’s always set to display:none, so it will never show.

Try adding this:

ul li:hover ul {
display:block;
}

Then the submenus should show on hover. Still need some styling there, though!