I'm here to see if you guys can help me with a problem I'm having.
I'm coding my header for my website design business and everything is going well. Until I checked in IE7... there's one stubborn div or padding or something that isn't moving where it should.
It works in FF2 and Opera, it's just IE7 that's messed up.
Let me show you:
IE7:

FF and Opera:

Here's my current code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>UNKNOWN Designs - Aurora, Canada</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
#wrapper{
width: 764px;
margin-left: auto;
margin-right: auto;
}
#bottom{
width: 764px;
height: 97px;
padding: 0;
margin: 0;
}
#bottom-left{
background-image: url("images/left.gif");
width: 256px;
height: 73px;
}
#bottom-right{
background-image: url("images/right.gif");
width: 256px;
height: 73px;
}
#centerpiece{
padding: 0;
margin: 0;
}
#top{
height: 54px;
padding: 0;
margin: 0;
}
a:link{
color: #1346FF;
text-decoration: none;
}
a:visited{
color: #1346FF;
text-decoration: none;
}
a:hover{
color: #1D4EFE;
text-decoration: none;
}
</style>
</head>
<body background="images/bg.gif" style="text-align: center; margin-bottom: 0;">
<div id="wrapper">
<div id="top">
<img src="images/top.gif" alt="Top" border="0">
</div>
<div id="bottom" align="center">
<div id="bottom-left" align="left" style="float: left; width: 256px; height: 73px; text-align: left; padding: 0; vertical-align: top;">
<div id="nav_left" align="center" style="text-align: center;">
<img src="images/spacer.gif" width="6px;">
<a href="#"><font face="Tahoma"><strong><font size="-1">HOME</font></strong></font></a><font size="-1">
<img src="images/spacer.gif" width="6px;">
<a href="#"><font face="Tahoma"><strong>ABOUT</strong></font></a>
<img src="images/spacer.gif" width="6px;">
<a href="#"><font face="Tahoma"><strong>TEAM</strong></font></a>
</font>
</div>
</div>
<div id="bottom-right" align="right" style="float: right; text-align: right; padding: 0; vertical-align: top;">
<div id="nav_right" align="center" style="text-align: center;">
<img src="images/spacer.gif" width="6px;">
<font size="-1">
<a href="#"><font face="Tahoma"><strong>PORTFOLIO</strong></font></a>
<img src="images/spacer.gif" width="6px;">
<a href="#"><font face="Tahoma"><strong>SERVICES</strong></font></a></font>
<img src="images/spacer.gif" width="6px;">
<a href="#"><font size="-1" face="Tahoma"><strong>GET A QUOTE</strong></font></a>
<img src="images/spacer.gif" width="6px;">
</div>
</div>
<div id="center_bottom" align="center" style="width: 252px; height: 97px; text-align: center; margin-left: 0; margin-right: 0; padding: 0;">
<img src="images/center_bottom.gif" alt="Centerpiece_2" border="0">
</div>
</div>
</div>
</body>
</html>
