Forums

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

Home Forums CSS Big ‘Ol CSS Dropdown Menu Re: Big ‘Ol CSS Dropdown Menu

#72077
noahgelman
Participant

You don’t need to use jquery, although you certainly could. The site you referenced uses simple html and css. What they do is put a div inside the list item and displayed none. when they hover the list item, the div is switched to display block. Like so

Code:
  • item 1
  • item 2
  • item 3
    content
Code:
div.content3 { display:none;}

li.item3:hover div.content3 { display:block;}

Then after that, it’s up to you to style the div and align it. Good luck. tell me how it goes.