treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Drop down nav falls behind

  • I would LOVE some fresh eyes on this. I cannot for the life of me figure out why this drop down nav falls behind the other divs in ie7. Can someone take a look and help me?

    http://www.musemachine.com/

    I also have a problem under "My Muse" that I am struggling with if someone wants to take a look at that too.

    I would greatly appreciate it. Thanks!
  • I'm not too sure about either issue, but for the stepdown issue my money is on something related to this: http://css-tricks.com/prevent-menu-stepdown/

    I'll play around with the first issue, and see what happens.
  • Try changing the
    <ul class="subnav">
    from position:relative to position:absolute.

    You can then amend the positioning to the correct place you require!
  • I've dealt with this 100 times. It's a z-index problem.
    #Headerwrap{z-index: 100;}
    #toppromoarea{z-index: -1;}

    That should fix it.