Dropdown menu hiding behind rotating Javascript images

PixelPusher

Super Moderator
Staff member
torishig,
the z-index property will only work on elements that are positioned (i.e. relative, absolute, fixed). You have set the index on both the navbar and the rotator but only one has an assigned position.

Remedy
add this to the "#header_menu" style: position:relative;
 
Top