View Single Post
  #4  
Old 10-22-2005, 10:07 PM
  Stephen Hatton's Avatar 
Stephen Hatton Stephen Hatton is offline
 

Senior Member
  
Join Date: Mar 2004
Location: Melbourne, Australia
Posts: 182
 

Default

Hi Boomer

Good effort. However here is a link for you to check:


The doctype declaration has changed in the last few months.

Quote:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

is no longer supported. They now point the declaration to the test suite that is used to verify your page. This tightens up their QA system and guarantees that the testing doesn't change (except for them fixing the test suite bugs).

Try the following declaration at the top of your pages:

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

or if you are trying to comply strictly use the following:

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

In the future we will be having XHTML test suites that are stable for us to check our pages to.

Your Stylesheet passes with full colours!! Good effort!



Regards
Ing. tephen Hatton
__________________
Apache Linux V1.3.33
PERL version: 5.8.0
PHP version: 4.3.11
MySQL version: 4.0.22-standard
X-cart V4.0.17: Addons: X-PConfig, X-Giftreg, X-Fancycat, X-AOM
Reply With Quote