How would I do so?
What I mean by that, is having a link without it highlighting purple/blue when you click it/don't click it.
Thanks!
How would I do so?
What I mean by that, is having a link without it highlighting purple/blue when you click it/don't click it.
Thanks!
You need to add some CSS
<head>
<style type="text/css">
a:link {color: black;} /* unvisited link */
a:visited {color: black;} /* visited link */
a:hover {color: black;} /* mouse over link */
a:active {color: black;} /* selected link */
<style type="text/css">
</head>
If you want it for all your website you can set the style of your body, something like this:
body a
{
color: #000000;
}
You have to use the CSS Pseudo Classes to style it.
a, a:visited{
color:#000;
}