I'm trying to build a simple site but I'm just blocking on this weird bug (?) that puts my "hover" menu UNDER the jquery/iframe div.
[url removed. thanks for your answers!]
When the page opens, it's the first menu item on the top left. As you see, it appears under the images below and I have no clue how to fix this!
Is it my CSS, DIVs of jquery t开发者_开发问答hat is the problem?
Thanks
Try this:
.menuruban { z-index: 1; }
.zoneimg { z-index: 0; }
Just set your z-index to a higher value:
#menu li {
z-index: 99; /* Or any other value higher than the images' z-index */
}
Or attach the z-index to the class menuruban
:
.menuruban {
z-index: 99; /* Or any other value higher than the images' z-index */
}
精彩评论