PDA

View Full Version : css-validator question


dedknight
04-04-06, 16:34
i have painted myself into a corner here and could really use some advice.
after making about 100 valid xhtml pages all with this in the footer of every page:

<a href="http://jigsaw.w3.org/css-validator/validator?uri=http://mywebsite.randomfreehost.com/style.css">css valid</a>

something occured to me..
what if down the line i decide to move my site to another domain?
i'd probably have to go and change all 100 or so pages. :rolleyes:

my question - is there a way to embed this link into the style sheet so later i'll only have to change that single line of code, instead of 100?

if not, is there a program out there to batch-process multiple html files?

Raits
04-05-06, 12:54
You can just use the link http://jigsaw.w3.org/css-validator/check/referer, then it should check the site the link was clicked on and changeing the domain shouldn't be a problem.

dedknight
04-05-06, 14:27
thank you Raits, that's exactly what i needed.