Forums

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

Home Forums CSS Help with CSS drop down menu Re: Help with CSS drop down menu

#132921
rodolpheb
Participant

Just like that:

#nav ul {
display: none;
}

#nav li:hover ul {
display:block;
}