Log in

View Full Version : Email Hyperlink (change color)



Eletricfrog
11-22-2008, 03:08 PM
How do I change the color of a hyperlink email when you put your mouse over it. The color that shows up now as normal is the blue underline for hyperlink, but when you put your mouse over or on it, it changes color to orange which is what I would like to change to have it the color of the logo. website can be viewed here:
http://www.icedownlimo.com/

thank you so much for your help as always.

TheJoshMan
11-22-2008, 03:22 PM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title> Link Hovering </title>
<style type="text/css">
a { /*defines styles for all anchor elements*/
color: #4489C9;
text-decoration:none;
font-weight:bold;
}

a:hover { /*defines styles for links once they're hovered over*/
color:#E78D1F;
}
</style>


</head>

<body>
<p>
This is a bunch of text here... Nothing to see. Just typing random stuff to give an example of a <a href="#">LINK</a> in the middle of other text...
</p>
</body>
</html>

Eletricfrog
11-22-2008, 04:39 PM
:D Thank you so so much for your help. It is greatly appreciated