Forums

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

Home Forums CSS Z-index @ ie7

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #29709
    skullcrusher
    Member

    Check this page: imowood[dot]pt

    The image at the right (with the wood) is abosute positioned with z-index 1000, but in IE7 that image apeears behind the menu.. Any fix for this?

    #80381
    skullcrusher
    Member

    No one?

    #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

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.