You have a misplaced javascript after your closing </html> tag. Move this to before your </body> tag. You also have a blank line at the top of your code, which supposedly can make IE 6 quirky.
IE 6 can be a real pest to design for. I don’t have it to check your site with, but for possible solutions (if fixing the code errors doesn’t work), try a Google search for: ie box model
Thread Starter
rstar
(@rstar)
Would have anything to do with a missing tag in the stylesheet? Something maybe with the #foxmenucontainer…not sure.
You do have an error (a misplaced 5) in your style.css. Replace this:
#header #logo {
float: left;
width: 921px;
margin:0;5
padding: 0;
}
With this:
#header #logo {
float: left;
width: 921px;
margin:0;
padding: 0;
}