Custom Links

Complete Control
Place this code under the </title> tag but before the </head> tag.

<style type="text/css">
a:link {
color : #000000;
text-decoration : none;
}
a:active {
color : #000000;
text-decoration : none;
}
a:visited {
color : #000000;
text-decoration : none;
}
a:hover {
color : #000000;
text-decoration : underline;
}
</style>

First, make #000000 (black) what ever color code you want it to be.
Where it says text-decoration : none (or underline) make it whatever you would like your text decoration to be.

Your choices are:
none
underline
overline
line-through
blink ( don't use that one. Besides being irritating as hell, it only works on Netscape )

You can also combine these together. You could have underline overline, underline line-through overline, etc.

Set these attributes to each of the different variables. Link is what your link looks like normally, active is the link currently being viewed, visited is visited links, and hover is what the link looks like when you hover the mouse over it.

Simplified
If your "link", "alink" and "vlink" will all look the same, then use this instead of the code I gave you above:

<style type="text/css">
a {
color : #000000;
text-decoration : none;
}
a:hover {
color : #000000;
text-decoration : underline;
}
</style>

Or, if you will make all links look the same, even on "hover", then just use this one:

<style type="text/css">
a {
color : #000000;
text-decoration : none;
}
</style>

Main?