Click to See Complete Forum and Search --> : Hyperlinks


The Little Guy
04-23-2005, 04:44 PM
How can I make this code So it looks like this:
1.) White text
2.) Redish white underline


<style type="text/css">
A:link { text-decoration: underline; color: #FFFFFF;}
A:visited { text-decoration: underline; color: #F1F1F1; }
A:hover { text-decoration: none; color: #E2E2E2; }
BODY { font-family: Verdana,Arial;
</style>

Sanim
04-23-2005, 05:38 PM
To change the color of an underline, it has to be border-bottom, not text-decoration.

<style type="text/css">
a {
text-decoration: none;
border-bottom: 1px solid #ff0000;
color: #F1F1F1; /* The color is just for text color. I don't know if you meant F1F1F1 to be the text color or not, but yeah.
}
</style>