I have 2 images on my site which are links and have a horrible border around them.
I could just border="0" in the HTML, but then the page wouldnt be Valid HTML Strict and the validator is suggesting I use CSS to kill the border, but I cant find a way to do this!
Is there a way to do this? the page is Here (<!-- m --><a class="postlink" href="http://www.sudbury-branchline.co.uk/test/">http://www.sudbury-branchline.co.uk/test/</a><!-- m -->) and the images with the border are at the top right under the select boxIn your <style>...</style> section:
img { border: none; }Or, you could put
img { border: 0; }
Thats Great, Thanks for your help
I could just border="0" in the HTML, but then the page wouldnt be Valid HTML Strict and the validator is suggesting I use CSS to kill the border, but I cant find a way to do this!
Is there a way to do this? the page is Here (<!-- m --><a class="postlink" href="http://www.sudbury-branchline.co.uk/test/">http://www.sudbury-branchline.co.uk/test/</a><!-- m -->) and the images with the border are at the top right under the select boxIn your <style>...</style> section:
img { border: none; }Or, you could put
img { border: 0; }
Thats Great, Thanks for your help