You could comment out the code in the index.php file.
For example go to your /joomla/templates/JoomlaJunkie_template/index.php file and open it up.
Around line 205 you will find this code.
| Code: |
<a class="w3c-valid-xhtml" target="_blank" href="http://validator.w3.org/check?uri=<?php echo $mosConfig_live_site;?>">xhtml</a>
<a class="w3c-valid-css" target="_blank" href="http://jigsaw.w3.org/css-validator/validator?uri=<?php echo $mosConfig_live_site;?>">css</a>
<a class="footer-rss" href="<?php echo $mosConfig_live_site;?>/index.php?option=com_rss&feed=RSS2.0&no_html=1">rss</a>
|
Insert this code instead.
| Code: |
<!--<a class="w3c-valid-xhtml" target="_blank" href="http://validator.w3.org/check?uri=<?php echo $mosConfig_live_site;?>">xhtml</a>
<a class="w3c-valid-css" target="_blank" href="http://jigsaw.w3.org/css-validator/validator?uri=<?php echo $mosConfig_live_site;?>">css</a>
<a class="footer-rss" href="<?php echo $mosConfig_live_site;?>/index.php?option=com_rss&feed=RSS2.0&no_html=1">rss</a> -->
|
<!--- anything inside these arrows is not used. -->