Hello. Where in the CSS code can I remove the underline hyperlinks and replace with a hover color? Thanks.
I’d love to know the answer as well :)
An easy answer is to use the quick-CSS option and do the following:
a {
color: blue; /* non-hover color */
}
a:visited {
color: yellow; /* visited link color */
}
a:hover {
text-decoration: none;
color: red; /* hover color */
}
You can set these colors via the theme settings, but to get rid of underlines, you only need the following:
a:hover {
text-decoration: none;
}
Thanks lenscraft. :)
gotta love the support for this theme. thank you!