I have a website that looks good when viewing it in resolution 1024 or higher in both IE and FireFox. When I shrink my resolution to 800 x 600 my website still looks good in FireFox. The problem arises when I look at my website in IE while resolution is 800 x 600. It's like my width is still the same. A horizontal scroll appears.
Here is some of my CSS:
#container {
width:expression((document.documentElement.clientWidth > 1000)? "1000px" : "94%");
max-width: 1000px;
margin: 0 auto;
border: 1px #CCCCCC solid;
Thanks for any help