Sat, 2008-10-04 18:15
I have a css with
#submenu{position: relative;z-index: 10;top:10px;}
if I have
by itself it works but when i put the
- the div is not relative any more. any idea how to fix this?
Sun, 2008-10-05 05:52
#1
The UL is a block level
The UL is a block level element.
Try dropping the containing div and adding the ID to the UL?
<ul id="submenu"> <li><a href="#">Insurance</a></li> </ul>