tags:

views:

66

answers:

1

I just added superfish to my page. But the drop down menu displays under my header-bottom div which has display: hidden. But that's not the only problem it is also covered by my Easy Slider which has images and divs and I can't tell which one is covering my drop down menu.

I'm not very familiar using z-index What's the best way of solving this?

A: 

Check that container, which contains your menu has relative position. Z-index works only for elements, which has position attribute 'relative' of 'absolute'.

For example:

<div style="position:relative">Menu here</div>
Vadeg
@Vadeg I made a wrapper div for my whole page set it relative and set my drop down menu absolute. I can't believe I did that just for a menu is there another way?
janoChen