xhtml and css validation. [Solved]

Hi,

Since I have an SSL certificate on my website, the XHTML and CSS links
do not work anymore.
Any turn aroud, solution…?

Thanks, regards.

-= Guy =-

in footer.php change

		  <a href="http://validator.w3.org/check?uri=referer"><?php langtrans('Valid'); ?> 
          <?php  print (isset($useHTML5) and $useHTML5)?'HTML5':'XHTML 1.0'; ?></a> |
          <a href="http://jigsaw.w3.org/css-validator/check/referer"><?php langtrans('Valid'); ?> CSS</a> 

to

		  <a href="//validator.w3.org/check?uri=referer"><?php langtrans('Valid'); ?> 
          <?php  print (isset($useHTML5) and $useHTML5)?'HTML5':'XHTML 1.0'; ?></a> |
          <a href="//jigsaw.w3.org/css-validator/check/referer"><?php langtrans('Valid'); ?> CSS</a> 

then it will work with either http or https.

Thanks Ken for your fast and efficient answer.

Shame on me, I should have seen that as long as I am going almost on all scripts
trying to avoid mixed contents.

Thanks again, kind regards.

-= Guy =-