I've been trying to get a frames type look for my site but I can't get it to work perfectly in IE. When the page loads (if you scroll before it fully loads) the page breaks. If you wait till it is totally loaded, then it works ok. Anyone know why this is? The link is http://www.chicforcheap.com/ .
Your HTML comments seem to be wrong. Here's what you have: <!--[if IE 6]> <link rel="stylesheet" href="http://www.clothesdeals.net/wp-content/themes/new_theme/IE6hack.css" type="text/css" /> <![endif]--> Code (markup): If you want the stuff in square brackets commented out, the proper comment would be <!-- [if IE 6] --> Code (markup): If you want the stuff between these two comments commented out, it should be <!-- [if IE 6] <link ...> [endif] --> Code (markup): J.D.
Interesting, it appears that IE's the only one that misinterprets '>' and closes the comment. It's a neat trick J.D.
Anyway, I figured out what your problem is. body { height: 100%; width: 100%; overflow: auto; } Code (markup): IE doesn't handle well overflow set on <body>. I have seen it add two scroll bars (one non-functioning) when overflow was defined for body. If you remove overflow from body and html, IE will not show this weird behavior. J.D.