OK, I looked into it a little more and it is the anchor tags that require the style. So, you could do it inline, ex:
Code:
<a style="outline-style:none;" href="http://img201.imageshack.us/img201/6923/countryxb6.gif"" rel="thumbnail"><img src="thumbnail.gif" style="width: 50px; height: 50px" /></a>
Or you could create a class and assign it to each link (in your stylesheet):
Code:
.thumbv {
outline-style:none;
}
Then with each link:
Code:
<a class="thumbv" href="http://img201.imageshack.us/img201/6923/countryxb6.gif"" rel="thumbnail"><img src="thumbnail.gif" style="width: 50px; height: 50px" /></a>
Bookmarks