Thanks for the help but that didn't work. Actually the site is passable in IE7. The content starts to center itself as you open the window. IE6 is just worse. It seems like it would have something to do with how the basic "wrapper" divs are not centering themselves in the site. Here is the CSS:
`
body {
font-family: Verdana, Tahoma, Arial, Helvetica; font-size: 13px;
background: #ebeae3 url(images/bg.gif) repeat-y top center;
margin: 0;
padding: 0;
color: #3c3c3c;
}
#box {
width: 940px;
margin: 0 auto;
padding: 0px;
}
#top {
width: 940px;
background: url(images/header.jpg) no-repeat;
height: 241px;
margin-top: 10px;
padding: 0;
}
#header {
float: left;
width: 940px;
margin: 120px 0 0 100px;
padding: 0;
}
#header h1 {
font-family: "Trebuchet MS", Arial, Verdana, Helvetica;
text-transform: uppercase;
margin: 0;
padding: 0;
color: #f2f2f2;
font-size: 20px;
font-weight: normal;
}
#header h1 a, #header h1 a:link {
color: #fff;
margin-left: 400px;
}
#header h1 a:hover {
color: #f9f9f9;
text-decoration: none;
}
#description {
color: #f9f9f9;
font-size: 12px;
padding: 0 0 0 502px;
}
`
The basic wrappers are called "box" and "top"
Does this help?
false1