IE doesn't like the body element treated that way. If you change your css, at the top there to look like so (additions/changes red):
Code:
<style type="text/css">
<!--
html {
height: 100%;
margin-bottom: 1px;
}
body {
margin:0;
padding:0;
}
.totalcontent {
margin:0 auto;
width:758px;
margin-top: 10px;
background-attachment: scroll;
background-image: url(images/new/backtile.jpg);
background-repeat: repeat-x;
background-position: left top;
}
.maincontent {
font-family: Arial, Helvetica, sans-serif;
color: #000000;
text-decoration: none;
padding: 10px;
float: left; . . .
and add another wrapper division for the entire page:
Code:
<body>
<div class="totalcontent"><div class="wrapper">
<div class="toplogo"></div>
<div class="main"> . . .
. . .</div> <!--Close Wrapper--></div>
</body>
That should take care of it.
Bookmarks