rendering problems with IE

Discussion in 'HTML & Website Design' started by cri8bat, Oct 30, 2009.

  1. #1
    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 :)
     
    cri8bat, Oct 30, 2009 IP
  2. indexhtml

    indexhtml Active Member

    Messages:
    170
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    55
    #2
    Just checked the page in FF and IE8 and both look OK with no white box?
     
    indexhtml, Oct 30, 2009 IP
  3. CodedCaffeine

    CodedCaffeine Peon

    Messages:
    130
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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")
     
    CodedCaffeine, Oct 30, 2009 IP
  4. cri8bat

    cri8bat Well-Known Member

    Messages:
    1,459
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    160
    #4
    yep that was the problem,



    thank you :)

     
    cri8bat, Oct 31, 2009 IP