Posts: 21
Location: / public_html / Universe / Virgo_Supercluster / Local_Group / Milky_Way / Orion_Arm / Solar_System / Earth / West_Europe / The_Netherlands
|
Hi,
I see you use the follow css for the terms link (You can create another reference easily, that will I explain later in this post):
Code:
.terms a {
color: #FFFFFF;
text-decoration: none;
}
.terms a.hover {
color: #FFFFFF;
text-decoration: underline;
}
And for all links in your html document you can use:
Code:
a {
color: #FFFFFF;
text-decoration: none;
}
.a.hover {
color: #FFFFFF;
text-decoration: underline;
}
Hope this helps.
|