Thank you Rob, interesting viewpoint.
It's not that I don't care about validation, it's more that I'm not familiar with these doc types etc.
The site you run through the validator is not a Zen Cart site. It's hosted by an e-commerce platform and I'm not responsible for the coding except for the pages I add to the general template provided by the host.
My Zen Cart site is athenscollectibles.info and this too has a number of validation errors but I haven't paid any one to code it. I'm still in the design phase and I will have a look at the errors when I'm through with it.
Just to take advantage of your knowledge since you are around: one of the validation warnings is
Code:
<a href="/index.php?main_page=index&cPath=5&language=en">
Comment: This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&'.
Would the link work if I followed the suggestion and changed it to
Code:
<a href="/index.php?main_page=index&cPath=5&language=en">
(Probably yes, in which case it won't be too difficult to correct most of the errors and warnings).
Thanks for the explanations and best wishes for a nice weekend.