Forum Moderators: open
Something such as:
<span style="a-hover:red;"><a href="http://www.google.com">my link</a></span>
The only way I'm able to do it for now is to use a class:
<style type="text/css">
.myRedLink A:hover
{
color:Red ;
}
</style>
<span class="myRedLink"><a href="http://www.google.com">my link</a></span>