As stated, the link color only changes in Chrome (my default browser).
Here is the code I put in my external CSS file:
a:link {text-decoration: none;}
a:hover { color:darkgray; }
a:active { color:darkgray; } /* Don't underline links */
a:visited {color:darkgray;text-decoration: none;}
Any idea why this is happening?
Okay so I found the issue. While in chrome my text color also covers my links but as you can see I did not actually set the link color in a:link
still thank you all for the input
a:link {color: darkgray ;text-decoration: none ;}
a:hover { color: darkgray ; }
a:active { color: darkgray ; }
/* Don’t underline links */
a:visited {color: darkgray ;text-decoration: none ;}