PDA

View Full Version : Another IE-FF problem



drake0013
January 22nd, 2006, 03:30 PM
My new page was designed in FF and looks just as I wanted it, but when I tested it in IE I had two problems. First is that my Navbar isn't lined up properly within the page. It is pushed off to the right a bit. Also, at the bottom of the page a little bit of my background is sticking out under the image I made to close off the content box. Does anyone know of solutions to these problems?

www.ryancopeland.com/new/index.htm (http://www.ryancopeland.com/new/index.htm)

RabBell
January 23rd, 2006, 09:34 AM
try

#navcontainer ul {
padding: 0;
margin-left: 20px;
background-color: #036;
color: White;
float: left;
width: 710px;
font: 12px verdana,arial,helvetica,sans-serif;
}

#navcontainer {
width: 750px;
background-color: #fff;
margin: 0 auto;
padding: 0;
}

#clearthefloats{
clear: both;
}

and just before the content div, add this

<div id="clearthefloats">
<br />
</div>

drake0013
January 23rd, 2006, 08:03 PM
hmmm.... no luck. that just added some white to the left side of the "home" block. any other ideas?

edit: i have figured out the line at the bottom in IE so that's not a problem anymore. just stuck on the right-shifted navbar.

edit again: i fixed the problems. thanks for the help.