Okay, so I’ve got two drop-down menus on my page, Navigation, and Links. Links works normally, but Navigation disappears when I try to hover over it. I got no idea why, so I’m asking.
Why does my Navigation menu disappear when I hover over it, and how do I fix it?
Okay, so I’ve got two drop-down menus on my page, Navigation, and Links. Links
Share
You have an element that’s hanging over the left menu named
#crwrap. So when moving your mouse to the Navigation options, the mouseout is triggered because you’re suddenly hovering the#crwrapelement instead of the Navigation menu. It’s invisible but if you use a debugging tool that supports DOM searching you’ll see it covering the area of the Navigation menu options.It’s not covering the Links menu so that one does not have any problems.
If you remove
#crwrap(or move it to the background usingz-index: -999), it works fine for me.