CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
Drop down nav falls behind
LinCSS25
Permalink to comment
#
December 2010
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!
clokey2k
Permalink to comment
#
December 2010
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.
shaun101
Permalink to comment
#
December 2010
Try changing the
<ul class="subnav">
from position:relative to position:absolute.
You can then amend the positioning to the correct place you require!
jamy_za
Permalink to comment
#
December 2010
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.
Add a Comment
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'll play around with the first issue, and see what happens.
You can then amend the positioning to the correct place you require!
That should fix it.