tags:

views:

67

answers:

5

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!

+2  A: 

Try this :-)

a:visited {
    color: black;
}
ILMV
Thanks! How do I do that with the unvisited link?I will try "unvisited".^- That did not work.
Anonymous the Great
No need to specify `:visited`, this will work fine `a { color: black; }`
Rob
Yeah you're right Bob :-)
ILMV
+6  A: 

Tutorial on link styling

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>
Adam
A: 

If you want it for all your website you can set the style of your body, something like this:

body a
{
  color: #000000;
}
alejandrobog
A: 
a {
   text-decoration: none;
} 
Jack Marchetti
A: 

You have to use the CSS Pseudo Classes to style it.

a, a:visited{
     color:#000;
}
orandov