jettrue:
Since you're going with a fixed width site, make these changes, and see if that helps.
Change this:
#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:
> ```
#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 */
I have tried the changes as above, did not improve. I made these changes below and IE6 has improve still not right.
* html #nw {
width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "900px" : d.clientWidth > 1048? "900px" : d.clientWidth < 1048? "900px" : "900px")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
}
Still have a problem down the right side the headings of search, information, languages, ect are out of alignment.
Any other suggestions please how I can sort this display problem out in IE6.
Thanks