Reputation: 19251
The page I am working on is here:
www.dqhendricks.com
As you can see, currently the submenu is pushing the next menu item to the right. I am trying to get the submenu to not affect the layout (without needing to put a set width on the containing <li>
tag). Is this possible?
Upvotes: 1
Views: 231
Reputation: 19969
Just use position:absolute on submenu;
#nav .submenu {
position: absolute;
z-index: 9;
margin: -4px 0 0 -4px;
}
Upvotes: 3