Hello Host99,
I checked your webpage and the problem is in your custom CSS file in
images/css/main.css
In that file you have a custom rule which fixes the body width. The rule looks like this:
Code:
body {
...
width: 875px;
...
}
Once you set the body width to 875px, IE7 will center your content based to that body width. If you don't fix the body width then your content will be centered based on your viewport (browser window) width.
So the correct solution in this case is to remove the property "width: 875px;". Without this property IE7 will center your content correctly.
The only reason why centering worked in other browsers like FF even with that width property, is that these browsers actually ignored this property. while IE7 honored it.
Best regards,
Vesselin[/code]