|
pageoneresults -> RE: I' m back. Katherine, beware! (6/24/2003 23:07:47)
|
Okay, every now and then I get into these giving moods. Since you have only 12 errors in your html based on W3C validation, I' m going to provide assistance in cleaning those up so you can be 100% valid. You have a lot of coding issues that do not show up as errors but will cause problems in certain browsers, particularly the use of inline styles, the border-collapse property and a few other problem areas. Here is the list of current errors along with a short explanation on how to correct them. quote:
Below are the results of attempting to parse this document with an SGML parser.- Line 18, column 29: required attribute " TYPE" not specified (explain...).
<SCRIPT LANGUAGE=" JavaScript" > - Line 30, column 29: required attribute " TYPE" not specified (explain...).
<SCRIPT LANGUAGE=" JavaScript" > - Line 48, column 16: there is no attribute " TOPMARGIN" (explain...).
<body topmargin=" 0" leftmargin=" 0" > - Line 48, column 31: there is no attribute " LEFTMARGIN" (explain...).
<body topmargin=" 0" leftmargin=" 0" > - Line 58, column 96: there is no attribute " BORDERCOLOR" (explain...).
...rder-collapse: collapse" bordercolor=" #111111" width=" 750" id=" AutoNumber1" > - Line 58, column 122: ID " AUTONUMBER1" already defined (explain...).
...ordercolor=" #111111" width=" 750" id=" AutoNumber1" > - Line 52, column 103: ID " AUTONUMBER1" first defined here (explain...).
...ollapse; padding: 0" width=" 750" id=" AutoNumber1" border=" 0" > - Line 62, column 87: required attribute " ALT" not specified (explain...).
..._7color.jpg" width=" 750" height=" 100" ></td> - Line 73, column 102: ID " AUTONUMBER1" already defined (explain...).
...ollapse: collapse; " width=" 120" id=" AutoNumber1" align=" left" > - Line 52, column 103: ID " AUTONUMBER1" first defined here (explain...).
...ollapse; padding: 0" width=" 750" id=" AutoNumber1" border=" 0" > - Line 158, column 122: ID " AUTONUMBER1" already defined (explain...).
...ordercolor=" #111111" width=" 750" id=" AutoNumber1" > - Line 52, column 103: ID " AUTONUMBER1" first defined here (explain...).
...ollapse; padding: 0" width=" 750" id=" AutoNumber1" border=" 0" >
1. The script language attribute is now deprecated. It should be replaced with this... <script type=" text/javascript" > 2. Same as #1. 3. Remove the topmargin attribute from your <body> tag and place this in your external style sheet... body { top: 0; margin: 0; padding: 0; } (Note: I left out the left:0; since this site is centered horizontally. If your site was fixed in the upper left hand corner with no top margin than the body rule would look like this... body { top: 0; left: 0; margin: 0; padding: 0; } 4. Remove the leftmargin attribute from your <body> tag and rely on the external style referenced in #3. 5. Strip out all instances of this garbage that FP generates... style=" border-collapse: collapse; bordercolor=" #111111" 6. Remove the id=" AutoNumber1" . I' m not sure how you generated that, but since it is an id, there can only be one instance of the id on any given page. 7. Same as #6. 8. Missing alt=" Alternative Text Here" for the image. All images must have an alt tag assigned. If the image has no meaning, i.e. spacer gif, etc., then an empty alt tag is suggested (alt=" " ), that' s two quotation marks side by side, no space inbetween. 9, 10, 11 and 12. These will clear once you remove all instances of the id=" AutoNumber1" are removed as advised in #6.
|
|
|
|