The body is a special case in HTML, perhaps if you were to create a container division and give it the body's properties, things might work out. In other words, change this:
Code:
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333333;
background: white;
WIDTH: 772px !important;
MARGIN-LEFT: auto; MARGIN-RIGHT: auto;
POSITION: relative
}
to:
Code:
#container {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333333;
background: white;
WIDTH: 772px !important;
MARGIN-LEFT: auto; MARGIN-RIGHT: auto;
POSITION: relative
}
Then for the body of the page have:
HTML Code:
<body>
<div id="container">
all of the page's HTML goes here
</div>
</body>
Bookmarks