Forums

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

Home Forums Other primary menu dropdown function Re: primary menu dropdown function

#55561
almcrorie
Participant

I guess to answer my own question about Twentyten dropdown menu:

#access ul ul {
display: none;
}
#access ul li:hover > ul {
display: block;
}

It appears that the use of “display:block;” on hover is used to display the dropdown menus.

Some parts have been editted out to shorten the code display.

Al