
The kind of links I am talking about look this one (for TBB).
Cheers
Joe
Moderator: TFF Mods
Code: Select all
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
Code: Select all
<style type="text/css">
body {
background: #FFFFFF;
color: #000000;
font-family: verdana, tahoma, arial;
font-size: 9pt;
top margin: 0px;
left margin: 0px;
}
a:link {
font-family: comic sans ms, cooper black;
font-size: 9pt;
text-decoration: none;
color: #990000;
}
a:visited {
font-family: comic sans ms, cooper black;
font-size: 9pt;
text-decoration: none;
color: #990000;
}
a:hover {
font-family: comic sans ms, cooper black;
font-size: 9pt;
text-decoration: underline;
color: #ff0000;
}
</style>
Not to harsh on evil git, but as a counterpoint...Evil Git wrote:this is something i've used. basically you can change other attributes in there as well like the curser when you hover over a link or different size so that it's bigger when you hover over it, things like that.