Quote:
Originally Posted by Mutt
I'm trying to put a single pixel border around thumbnails with some padding between the thumbnail and border - and on hover the border will change color. 
|
You can do it by putting the class on the Image tag instead of the Anchor/Link tag.
Code:
<style type="text/css">
a img.thumb {border:1px solid #000; padding:4px;}
a:hover img.thumb {border:1px solid #fff; padding:4px;}
</style>
<a href="file.wmv"><img class="thumb" src="thumbnail.jpg" border="0" width="300" height="200" /></a>