
Originally Posted by
Jatocar
Hi All,
I have replaced the old Cherry Zen logo in the header of my site
http://www.indigosilvergems.com, the header looks OK in Firefox and IE7, but its looks rubbish in IE6. The right hand side of the site is all messed up.
I have tried all sorts of configurations in the stylesheet.
Anyone know of a Fix I can try??
Thanks

Since you're going with a fixed width site, make these changes, and see if that helps.
Change this:
Code:
#nw {
width:900px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
max-width:900px; /* prevents the main content from getting wider than 1300px in sites other than IE */
min-width:800px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
}
/* IE only. Controls Width of Site and Main Content*/
* html #nw {
width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "1300px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "1000px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
}
/* end IE only */
/* end site and main content width section */
to this:
Code:
#nw {
width:880px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
}
/* end site and main content width section */
Bookmarks