Website problems using IE vs Firefox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • autumnrrr
    New Member
    • Sep 2010
    • 11

    Website problems using IE vs Firefox

    I built a site using firefox and I just checked my site using IE and for some reason all my pages seem to have scrolling problems. If I keep scrolling down it keeps going even though there is nothing to move down to. If I keep scrolling it keeps going farther and farther down. Firefox works properly. Help please!

    http://cisarr.webs.com/profile.html
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    Having problems with IE is expected and the norm. It's the worst browser on the planet by far.

    First immediate observation. You are declaring XML but using a HTML doctype and serving it as HTML. Your first line puts IE into quirks mode while the second is incorrect. Remove the first line, which is an XML declaration, and change the second to this:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">

    Comment

    Working...