Reply
Old 02-23-2008, 11:27 AM W3C suck
Webmaster Talker

Posts: 551
Name: Barry O' Brien
Location: Ireland
uploaded my new site and the validation fails because I use of a few minor things like using a space between a sentence in the text and ending tags whats up with that? http://validator.w3.org/check?uri=ww...Inline&group=0
audiomad is offline
Reply With Quote
View Public Profile Visit audiomad's homepage!
 
When You Register, These Ads Go Away!
Old 02-23-2008, 11:42 AM Re: W3C suck
Webmaster Talker

Posts: 660
Location: Kokkola, Finland
looks like it's your code that sucks

it's a good job they don't do a grammar/spell checker too!

look at the TIDY option in the validator page to see what you should have put and sometimes cryptic explanations below the error messages

Last edited by davemies : 02-23-2008 at 11:44 AM.
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 02-23-2008, 11:46 AM Re: W3C suck
ADAM Web Design's Avatar
Canadastaninianite

Posts: 5,945
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
I've noticed some oddities with the W3 validator as of late myself...specifically, the inability to recognize onblur and onfocus as proper anchor attributes (apparently, people who don't use mice don't count anymore.)

This isn't the only reason that the W3C sucks, but it's becoming a fairly big one.

In your particular case, though, davemies is right. It's because you use & instead of the correct & (for a special HTML character entity) and because you're using absmiddle for alignment (try to use CSS for that instead.) Fix those, and at least 4 out of the 5 errors go away.

Last edited by ADAM Web Design : 02-23-2008 at 11:48 AM.
ADAM Web Design is offline
Reply With Quote
View Public Profile Visit ADAM Web Design's homepage!
 
Old 02-23-2008, 11:46 AM Re: W3C suck
Webmaster Talker

Posts: 551
Name: Barry O' Brien
Location: Ireland
A space in the text should not come up as an error you can't even use quotation marks anymore because of it.
audiomad is offline
Reply With Quote
View Public Profile Visit audiomad's homepage!
 
Old 02-23-2008, 11:49 AM Re: W3C suck
ADAM Web Design's Avatar
Canadastaninianite

Posts: 5,945
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
It's not the space, Barry...it's the character before it. It's just that the W3C has to explain things in W3 doublespeak.
ADAM Web Design is offline
Reply With Quote
View Public Profile Visit ADAM Web Design's homepage!
 
Old 02-23-2008, 11:49 AM Re: W3C suck
Webmaster Talker

Posts: 660
Location: Kokkola, Finland
Quote:
Originally Posted by audiomad View Post
A space in the text should not come up as an error you can't even use quotation marks anymore because of it.
which line of code is that? can you post it so we can see/help?
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 02-23-2008, 11:55 AM Re: W3C suck
Webmaster Talker

Posts: 551
Name: Barry O' Brien
Location: Ireland
Its in the validation in the alt tag
audiomad is offline
Reply With Quote
View Public Profile Visit audiomad's homepage!
 
Old 02-23-2008, 12:00 PM Re: W3C suck
Webmaster Talker

Posts: 660
Location: Kokkola, Finland
you just need to add the alt attribute and the text replacement for that image

alt="alternative text..."
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 02-23-2008, 12:02 PM Re: W3C suck
Webmaster Talker

Posts: 660
Location: Kokkola, Finland
Quote:
Originally Posted by davemies View Post
you just need to add the alt attribute and the text replacement for that image

alt="alternative text..."

p.s. you should spell check your work site and check it for grammar.
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 02-23-2008, 12:23 PM Re: W3C suck
joder's Avatar
Flipotron

Posts: 6,443
Name: James
Location: In the ocean.
If you don't like the language rules, change your DTD To HTML Loose where you can do it the wrong way.
joder is offline
Reply With Quote
View Public Profile
 
Old 02-25-2008, 04:36 AM Re: W3C suck
Skilled Talker

Posts: 83
Location: UK
I do have to admit that W3C is quite strict and does pick out the smallest things not to validate. I have been using a validator plugin for firefox and it seems to do the job quite nicely, but its not exactly made by the people at W3C. For the moment its validating things close enough, but the validator at W3C can be oh so picky, how important is it to get the code 100% validated?
__________________
Chapter Zero | Apply For Finance | DCS
graham08 is offline
Reply With Quote
View Public Profile Visit graham08's homepage!
 
Old 02-25-2008, 08:18 AM Re: W3C suck
Capt Quirk's Avatar
Extreme Talker

Posts: 202
Location: Flordidian
And I still think that if the W3 could get a girl once in a while, I'd still be able to use frames and tables that work in most browsers...
Capt Quirk is offline
Reply With Quote
View Public Profile
 
Old 02-25-2008, 10:44 AM Re: W3C suck
vkw91's Avatar
Ultra Talker

Latest Blog Post:
Good Web Design Guide - part 1
Posts: 290
Name: Vicky
Location: Wales
I've noticed the onblur and onfocus issues lately too!
__________________
Portfolio: www.vkw91.co.uk
Techno Pup: www.technopup.co.uk

vkw91 is offline
Reply With Quote
View Public Profile Visit vkw91's homepage!
 
Old 02-25-2008, 10:57 AM Re: W3C suck
Skilled Talker

Posts: 83
Location: UK
It does have these small things it decides to pick out for what seems no reason, my pondering is this - will it effect your website in terms of search engine ranking that much if you have 1-10 warnings that need fixing according to the official W3C validator?
__________________
Chapter Zero | Apply For Finance | DCS
graham08 is offline
Reply With Quote
View Public Profile Visit graham08's homepage!
 
Old 02-25-2008, 10:58 AM Re: W3C suck
ADAM Web Design's Avatar
Canadastaninianite

Posts: 5,945
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
Code:
<div align="left"><a href="pages/faq.html" title="Faq's: Questions & Answers">Faq's</a></div>
This is the line he's talking about. It should read:
Code:
<div align="left"><a href="pages/faq.html" title="Faq's: Questions &amp; Answers">FAQs</a></div>
That should solve most of it right there.
ADAM Web Design is offline
Reply With Quote
View Public Profile Visit ADAM Web Design's homepage!
 
Old 02-27-2008, 05:46 AM Re: W3C suck
Webmaster Talker

Posts: 551
Name: Barry O' Brien
Location: Ireland
Quote:
Originally Posted by ADAM Web Design View Post
Code:
<div align="left"><a href="pages/faq.html" title="Faq's: Questions & Answers">Faq's</a></div>
This is the line he's talking about. It should read:
Code:
<div align="left"><a href="pages/faq.html" title="Faq's: Questions &amp; Answers">FAQs</a></div>
That should solve most of it right there.
I fixed that part thanks still a few pieces to fix to get it validated
audiomad is offline
Reply With Quote
View Public Profile Visit audiomad's homepage!
 
Old 02-27-2008, 03:20 PM Re: W3C suck
willcode4beer's Avatar
Webmaster Talker

Posts: 695
Name: Paul Davis
Location: San Francisco
The *real* thing that sucks with the W3C is defining standards without creating a reference implementation.

For example, when Sun published the J2EE specification, they also published a reference implementation, a server that implemented the standard.

This is common practice in the software world. The W3C on the other hand publishes a standard for web documents, and then cries that none of the browsers are fully compliant.

The primary reason that reference implementations are important is they validate the feasibility of implementing a specification or standard.
__________________
Paul Davis
willCode4Beer.com (coding for all the right reasons)
willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 02-27-2008, 03:42 PM Re: W3C suck
Arenlor's Avatar
Ultra Talker

Posts: 463
Name: Jerod Lycett
Location: /home/arenlor
Quote:
Originally Posted by willcode4beer View Post
The *real* thing that sucks with the W3C is defining standards without creating a reference implementation.

For example, when Sun published the J2EE specification, they also published a reference implementation, a server that implemented the standard.

This is common practice in the software world. The W3C on the other hand publishes a standard for web documents, and then cries that none of the browsers are fully compliant.

The primary reason that reference implementations are important is they validate the feasibility of implementing a specification or standard.
Hear hear! That is so true, also take php for example, we can go to the official site for it (http://php.net) and look up any function and see examples of it in action. The W3C standards you tend to have to guess your way through it or find support forums like this, just to be valid and get the effect you want.
__________________
PHP Code:
<?php echo "Hello World"?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
Arenlor is offline
Reply With Quote
View Public Profile Visit Arenlor's homepage!
 
Old 02-28-2008, 03:46 PM Re: W3C suck
Webmaster Talker

Posts: 551
Name: Barry O' Brien
Location: Ireland