Here is the html code:
<!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>Untitled Document</title> <link href="css/global.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <img src="images/wings_top.jpg" alt="Top header image - Top of wings and Seraphim Creative Sign" width="777" height="99" vspace="0"/> <img src="images/wings_middle.jpg" alt="Middle header image - Middle of wings and top of cross" width="777" height="98" vspace="0"/> <img src="images/wings_bottom.jpg" alt="Bottom header image - bottom of wings and cross, chains" width="777" height="86" vspace="0"/></div> <div id="navigation"> <img src="images/main_up.jpg" alt="Main page navigation link" id="main"/> <img src="images/about_up.jpg" alt="About page navigation link" name="about" id="about"/> <img src="images/portfolio_up.jpg" alt="Portfolio page navigation link" name="portfolio" width="131" height="42" id="portfolio"/> <img src="images/services_up.jpg" alt="Services page navigation link" name="services" width="131" height="42" id="services"/> <img src="images/contact_up.jpg" alt="Contact page navigation link" name="contact" width="131" height="42" id="contact"/> </div> <div>Content_Right</div> <div>Content_Left</div> <div>Footer</div> </body> </html>
Here is the CSS:
body {
text-align: center;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #666666;
background-color: #EFEFEF;
margin-top: 0px;
}
div#header {
width: 777px;
padding: 0px;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
}
div#navigation {
padding: 0px;
width: 777px;
margin-right: auto;
margin-left: auto;
text-align: left;
margin-top: 0px;
margin-bottom: 0px;
}
div#navigation img#main {
margin-right: 19px;
margin-left: 14px;
}
div#navigation img#about {
margin-right: 18px;
}
div#navigation img#portfolio {
margin-right: 19px;
}
div#navigation img#services {
margin-right: 15px;
}
div#navigation img#contact {
margin-right: 0px;
}
Here is the problem:

Maybe I screwed up (coding and design, don't mind the crappy piece of fireworks art
I wonder if IE has a problem with images in the same div, cause that's where the problem is.
