Sorry, one more thing
I added in custom css to adjust the link color:
/* unvisited link */
a:link {
color: #A80000;
}
/* visited link */
a:visited {
color: #000000;
}
/* mouse over link */
a:hover {
color: #A80000;
}
/* selected link */
a:active {
color: #A80000;
}
But this doesn’t work:
/* mouse over link */
a:hover {
color: #A80000;
}
On hover the link still turns blue… any suggestions?
Thanks!