Hi all, I just checked my website on IE6, IE7 and IE8 and they do not render properly, it renders very well in Firefox. the website is powerball pro review if you scrool down (in IE) you will see a big white box, I do not know what that is, but it dosent appear on Firefox. how to fix this? need help thanks in advance
The issue is due to your CSS: #wrapper { width: 800px; height:2600px; background-color: #FFF; border: outset medium #464646; } Code (markup): The code above should be changed to: #wrapper { width: 800px; height:auto; background-color: #FFF; border: outset medium #464646; } Code (markup): It will let the page automatically adjust for the page height, thus removing your white box issue (which is created because it's all part of the "Wrapper")