Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dropdown menu, z-index problems

I've got a problem. I have a drop down menu, but the drop down list is always one layer behind the body although the z-index of menu is set to 999 and z index of body set to -999

Please chceck http://www.w3dominik.com/x/finemoney/ (the menu on top right, it says dropdown and should have 2 options, only 1 is now visible)

Thanks for help

like image 804
user1505027 Avatar asked May 01 '13 12:05

user1505027


2 Answers

This will fix it for you:

#header_wrap {
  position: relative;
  z-index: 10;
}

You often need to set the z-index on the outermost parent (particularly in older versions of IE).

like image 120
ralph.m Avatar answered Sep 30 '22 01:09

ralph.m


Just add position: relative, z-index won't work without position.

header ul {
    display: inline-block;
    float: right;
    height: 30px;
    z-index: 999;
    position: relative;
}
like image 25
Manish Sharma Avatar answered Sep 30 '22 03:09

Manish Sharma