Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>whatever</title>
<style type="text/css">
<!--
body {
text-align:center;
}
#wrapper {
text-align:left;
width:720px;
margin:0 auto;
position:relative;
}
-->
</style>
</head>
<body>
<div id="wrapper">
<!-- The rest of the page -->
</div>
<!-- /wrapper -->
</body>
</html>
I see your layout centered in FF and IE6.
The simple example above will ensure a centered layout in IE5.5 (which is showing your layout left aligned at the moment - so I'm presuming are you talking about a less version of IE6).
You need to center the body and then wrap everything else in a wrapper div and counter the centeRING by using text-align: left on the wrapper div (otherwise all your content in the other divs will all be centered).
Hope this helps.
Nadia
Bookmarks