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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top