Reputation: 83
How can I align the submenu (activated on hover) behind the content, on this page: http://tinyurl.com/pmuj43q
The page title "Center Info" is always in front of the submenu when you hover over the navigation menu item called "Center Info"
I implemented the css3 menu from this link: http://www.cssscript.com/3d-flipping-dropdown-navigation-with-pure-css3/
Upvotes: 2
Views: 38
Reputation: 36652
Assign a z-index
to your header to pull it above the rest of the content...
header#masthead {
/* rest of styles */
position: relative;
z-index: 1;
}
Upvotes: 1