<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Campagna Italiana - Road to Rome</title> <link rel="stylesheet" type="text/css" href="ci_css.css" /> </head> <body> <div id="container"> <div id="left"> <img id="homebutton" src="images/left_button_home.jpg" /> <img id="mainbuttons" src="images/left_button_about.jpg" /> <img id="mainbuttons" src="images/left_button_team.jpg" /> <img id="mainbuttons" src="images/left_button_media.jpg" /> <img id="mainbuttons" src="images/left_button_downloads.jpg" /> </div> <div id="banner"><img src="images/banner.gif" /></div> <div id="right"></div> </div> </body> </html>
CSS....
/* CSS Document */
body {
background-color: #000000;
background: url(images/bg_body.jpg);
text-align: center;
}
#container {
width: 800px;
height: 665px;
margin-left: auto;
margin-right: auto;
text-align: left;
background: url(images/bg_main.jpg);
margin-top: 40px;
margin-bottom: 60px;
}
#banner {
width: 480px;
height: 141px;
margin-left: 10px;
margin-top: 9px;
float: left
}
#left {
width: 140px;
height: 645px;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 9px;
background: url(images/left_bg.jpg);
float: left;
}
#homebutton {
margin-top: 98px;
margin-left: 6px;
float: left;
}
#mainbuttons {
margin-top: 2px;
margin-left: 6px;
float: left;
}
#right {
width: 140px;
height: 645px;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 9px;
background: url(images/left_bg.jpg);
float: left;
}
And now for the problem.
In Firefox and Internet Explorer 1.5 the website looks exactly how I want it to look:

However in Internet Explorer 6.0 the website looks like a flaming crap (for lack of a better description):

So anyone have any suggests as to why IE decides to change the margin on the left to that huge size instead of my specified 10px and in doing so pushes the entire layout way to the right of the container...
As you can tell this is my first CSS layout and I am having just an absolutely wonderful experience!!
