HTML problem in IE

  • Thread starter Thread starter Guest
  • Start date Start date
C A Upsdell" <""cupsdellXXX"@-@-@XXXups said:
Does your problem persist if you fix your HTML and CSS errors?

I'm not getting any errors loading the page. Do you see any? If so please
let me know what they are.

D
 
David said:
Well it passes the CSS validator and all the HTML validator complains about
are some attributes that are browser specific but nothing that I could see
that would make IE behave like it is doing.

Okay, you seem to have fixed the HTML comment errors, and the single CSS
error.

I noticed that your source begins with:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

With IE6, this will trigger quirks mode, not standards mode. For
standards mode, you should have:

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

For more about this, see http://www.upsdell.com/BrowserNews/res_doctype.htm
 
Back
Top