Need help figuring out how to fix my layers

Discussion in 'CSS' started by mopacfan, Nov 15, 2011.

  1. #1
    On my website (www.ResponderPSE.com), I just added a banner rotator based on jquery. The images are now blocking the pop up navigation on the left. I'm not a css expert and I did try adding a z-index: 999999; to the container div for the popout nav with no luck. So I'm hoping one of the CSS wizards here can pont out the fix for this.

    Thanks in advance
     
    mopacfan, Nov 15, 2011 IP
  2. wounded1987

    wounded1987 Well-Known Member

    Messages:
    2,914
    Likes Received:
    60
    Best Answers:
    0
    Trophy Points:
    150
    #2
    you probably added z-index to the wrong class/id

    this works:
    <ul class="subNav_popout" style="
    z-index: 9999;
    ">

    so add z-index to .subNav_popout class

    the reasson why it didn't work for u cause u need to add it to the element in question that you want to be on top of the other elements, in this case the .subNav_popout

    cheers
     
    wounded1987, Nov 15, 2011 IP
  3. mopacfan

    mopacfan Peon

    Messages:
    3,273
    Likes Received:
    164
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks. I had it on the wrong tag. It's working great now.

    Michael
     
    mopacfan, Nov 18, 2011 IP