Hey everyone, Okay, so I'm working on my site and I'm in the really early stages of development. I've noticed right off the bat that the navigation background is disconnected in FireFox 3 on PC. Only on PC. FF on my mac displays it correctly as does Safari, Chrome, and IE 8.
Does anyone know what would cause something like this?
Wow...can't believe I didn't think of that. I failed...
Thanks for the help.
I did the top: 0; right: 0; but found that I had to give the top a negative value to bump it up with the red rule across the top. This makes it look the way I want on all browsers except IE 7 It's off by like 5px. It's got to meet up perfectly or else it looks funky.
Okay, so I'm working on my site and I'm in the really early stages of development. I've noticed right off the bat that the navigation background is disconnected in FireFox 3 on PC. Only on PC. FF on my mac displays it correctly as does Safari, Chrome, and IE 8.
Does anyone know what would cause something like this?
http://redeyedesigner.com/dev/newred/red_site/
Here's my CSS:
Broken in IE7, and far worse things in IE6.
Let's do some absolute positioning! Wooo!
Add this to your CSS:
#header {
position: relative;
}
#menu {
position:absolute;
top:0;
right:0;
}
REMOVE:
#menu {float:right;
margin-top:-56px;
}
Thanks for the help.
I did the top: 0; right: 0; but found that I had to give the top a negative value to bump it up with the red rule across the top. This makes it look the way I want on all browsers except IE 7 It's off by like 5px. It's got to meet up perfectly or else it looks funky.
Do you think this part is messing it up?
h1#logo {margin: 20px 0 5px 0;
}
sigh...I feel like a young grasshopper.
Again, thanks for your help!
Tip: use firebug to see where margins (and padding) are being applied and what exactly they are doing.
So: