Re: Change width, center site
Yes, the method above is working for your site in IE7
possibly you also need add
body{text-align: center}
#page-container{text-align: left}
or you can just switch IE8 to IE7-compatible mode
replace in your customer/meta.tpl
<meta http-equiv="Content-Type" content="text/html; charset={$default_charset|default:"iso-8859-1"}" />
with
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="Content-Type" content="text/html; charset={$default_charset|default:"iso-8859-1"}" />
|