Reputation: 65
I have tried to add position:relative
and z-index:1000
to my ul
navigation elements but it continues to display behind the logo and content which is set to position relative.
I found a small script which positions all the ul elements to 1000 and that did not work either.
Example: http://islands.kellykruschel.com/directory/accommodations/
Hover over Things to Do >> Outdoor Sports
Any solutions would be very helpful!
Upvotes: 0
Views: 68
Reputation: 1880
on #topbar
add this:
#topbar{
z-index: 1000;
}
This should make it sit on top of the logo. It works in chrome.
Upvotes: 1