Dale, 2023-01-22 02:29:
> I have HTML and CSS validators on each of my pages. They only check the
> front page lately. But the error happens when clicking on validator on
> each page.
>
>
https://www.dalekelly.org/
If you want to make sure, your website is valid, then just check it.
There is no need to put these logos on your site. Also if a page may not
be valid any longer because you did some changes and f
> CSS validator icon doesn't show up on my page but when I click on its
> empty space "Valid CSS!" text shows up and then it goes to a page saying
> "Connection timed out" Error Code 522
Seems the service is down - at least at the time when I checkd it:
<
https://downforeveryoneorjustme.com/jigsaw.w3.org?proto=https>
> Also, how can I edit these so they go back to checking each separate
> page and not just the front page?
You can't. Referrers are not sent to other domains any longer for
security reasons, so "tracking pixels" which record from which domain
the image was requested are no longer possible.
Therefore <
https://validator.w3.org/check?uri=referer> will not work any
longer because it relies on the browser to send a referer which will not
happen.
If you want to have a logo for the current page you either need to add
the URL like this:
<
https://validator.w3.org/nu/?doc=https%3A%2F%2Fwww.dalekelly.org%2Fimages.html>
Or you need to use server side scripting like PHP to generate the URL
based on the current query like this:
<a
href="
https://validator.w3.org/nu/?doc=<?php
echo urlencode($_SERVER['REQUEST_URI']);
?>"><img
--
Arno Welzel
https://arnowelzel.de