
Originally Posted by
Jatocar
I have tried the changes as above, did not improve. I made these changes below and IE6 has improve still not right.
Code:
* 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
add this to your stylesheet:
Code:
* html #navColumnTwo {
margin-right: -170px !important;
}
and remove this (the below is only if you're using a flexible width site, you've switched to a fixed width):
Code:
* 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 */
}