Okay I have a link that looks like this:
The gif image is mostly transparent, and I don't want the background color to change on the image, just the text.
Is there a way to do this?
Code:
<style type="text/css">
a.link1:link, a.link1:visited {
text-decoration: none;
color: #000000;
font-family: Verdana, Tahoma;
font-size: 11px;
}
a.link1:hover {
background-color: #000000;
text-decoration: none;
color: #99CCFF;
font-size: 11px;
}
</style>
<A href="[URL unfurl="true"]http://www.mypage"[/URL] class="link1"><img src="pic.gif"><br>Description of link</a>
The gif image is mostly transparent, and I don't want the background color to change on the image, just the text.
Is there a way to do this?