Try being real specific with IE
<style>
a img {border:none;} // this removes the border, if you want the white border then add the styling you want it to be.
</style>
A second option would be to to use this
HTML Code:
a:link, a:visited, a:hover, a img {
color: #ffffff;
text-decoration: none;
border:none;
I think you are battling IE's default style sheet and this should spell it out for IE. How this works is it only applies this rule to <img> tags nested inside of <a> tags. Firefox and Opera have always been friendlier to standards then MSIE.
The other thing is add an alt info to this image. If images are turned off on a viewer's browser all that text info is lost. If it's included in the alt attribute, the information is still accessible.
Bookmarks