Reputation: 1813
I have a little problem here with my dropdown menu.
When I hover a link, the submenu slides out but doesn't stay open.
The problem has something to do with my "content" div element, because when I remove this div it works. But I can't find my error.
Maybe someone can have a look at it. ;-)
Here is the menu.
Upvotes: 1
Views: 667
Reputation: 11683
It has to do with the fact the #content comes after #navigation and it's z-index is higher. If you set both position: relative and set the z-index of #navigation to a higher value than #content it'll work as you expect. See http://jsfiddle.net/tangibleJ/B4aDM/2/.
Upvotes: 2