I am stuck

BlueEew

PokeProject - GO!
  • 786
    Posts
    19
    Years
    Hi,

    Before my site had a width on the header and when the resolution of the screen changed it messed up. So I made it to stretch with the screen so it fits perfectly, but there is a new problem.

    On FireFox the site seems to be fine but on internet explorer, the top heading and the disclaimer heading as gone. It takes the top one off for some reason dose any one know how to fix this?

    I was thinking its the browser because not all browsers can view CSS, but there are site like mine but they don't have this problem.

    Thank's,
    BlueEew.
     
    Well, what's the link to your site?
    Be sure to use valid HTML and CSS, that might help.
    When I had problems with my layout in different, I took some time and worked on the CSS to make it valid and then most errors were gone.
    There might still be some little problems with IE, since IE is just like that.
    But be sure to try this out^^
     
    https://validator.w3.org/
    https://jigsaw.w3.org/css-validator/
    Check your site with those two.
    It seems like you've got some mistakes in the HTML code, for example, you've got that part twice:
    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "https://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <title>PokeProject</title>
     
    Before you do ANYTHING else, go through your code and clean it up.
    Code:
    </html>
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    </head>
    Do I have to say anymore?
     
    Back
    Top