xxxxxxxxxx
/* Use this CSS code to remove the default color/style of visited links */
a:visited {
color: inherit;
text-decoration: none;
}
xxxxxxxxxx
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}