Forums

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

Home Forums CSS Submenu where art thou? Reply To: Submenu where art thou?

#250149
Beverleyh
Participant

The sub-menu UL is set as position:absolute; which pulls it out of the flow of the doc and makes it overlap LIs in the parent menu.

If you change it to position: static; when the LIs are hovered, it should push them down.

Probably;

#nav li:hover ul {
    position:static;
}