Reputation: 31
I'm having trouble getting my dropdown menu to stay visible. When I mouse over to the menu, the submenu tabs will show up and stay there for a second but then go away. This seems to be a common problem, but I'm not sure what I need to change in my code, nor what html I'd even need to post here to get the problem fixed.
Could anyone look at my site and tell me what is wrong? http://www.studywithstyleblog.com
I'd really appreciate it!
Thanks
Upvotes: 0
Views: 162
Reputation: 378
you just need to Add "Top:0px;" in "#menus li ul" CSS
Updated CSS
#menus li ul {
z-index: 9999;
position: absolute;
left: -999em;
height: auto;
width: 175px;
top: 0px;
margin: 0;
padding: 0;
}
Upvotes: 0
Reputation: 32182
Now define your #menus li ul{top:100%;}
as like this
#menus li ul{top:100%;}
Upvotes: 2