I am trying to make a dropdown menu with pure html and css, but the submenus disappear when the cursor leaves the parent li, thus preventing me from clicking on the submenu. Here is a link to the test site, link text
I would really appreciate some help.
Roland A.
The problem is that the
contentdiv is above the menu and takes the mouseover out of your menu.. set theulto haveposition:relativeandz-index:100and it should work..update
actually just add
z-index:100;to the#navigationrule