Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Z-index @ ie7 Re: Z-index @ ie7

#80391
wswingle
Member

The IE7 "z-index" bug has got you (I think it actually affects IE 7 or less). Google it up!
Anyhoo, the fix is very simple, just add the following to your CSS #header declaration.

Code:
#header {
z-index: 1;
}

In the end it should look like this:

Code:
#header {
position: relative;
height: 100px;
z-index: 1;
}

Cheers,

Wayne