Stupid IE

jnjc

New Member
The easiest way to solve this is to add text-align:center; to your body style:

body {
margin: 0px;
background: url(images/background.jpg) repeat-x top left;
width: 100%;
text-align: center;
}

But you might need to check to see if there is a knock effect somewhere else...

If you don't want to add it to body then add a wrapper div around the content div, have it width:100% with text-align:center

HTH,
JC
 
Top