Hi - using theme twentyten (weaver) and my menu drop down menu has become hidden under the main page content, but only on non-index pages.
Any ideas very much appreciated
S
Hi - using theme twentyten (weaver) and my menu drop down menu has become hidden under the main page content, but only on non-index pages.
Any ideas very much appreciated
S
you may need to add a z-index value in the css for the menu
just tried that, no luck
is it possible that the menu js is the problem?
http://www.w3schools.com/Css/pr_pos_z-index.asp
Note: z-index only works on positioned elements (position:absolute, position:relative, or position:fixed).
You need to set the position for the element in order for the z-index to work... ;)
when I had the same issue with a dropdown menu, applying a z-index to the menu didn't work..... but when I wrapped the menu in another div and applied to that it worked. So for instance:
<div id="navMenuWrap">
existing menu code
</div>
then in the css I just added
#navMenuWrap {
position: relative;
z-index: 999;
}
And that worked
no luck again...i'll keep trying
does each element of the menu bar #access (i.e. the drop down parts) have to be set to a particualr z-index as well as #access itself??
SOLVED! REMOVED "OVERFLOW:HIDDEN" FROM #BRANDING
thanks for the help
I'm experiencing the hidden menu problem with V1.7
Works fine with all browsers except Explorer.
View here>> http://careernotes.ca
Any help available?
Figured it out
#access {position: absolute; z-index: 99999;}
but had to change space after header to 50px otherwise the menu overlapped the content.
This topic has been closed to new replies.