Change color on hyperlink

safehaven

Limp Gawd
Joined
Apr 28, 2008
Messages
217
Hopefully this is the right place to post this.

I am sure my issue is beyond simple, but I am not a coder and I cannot figure it out.

How do I change the color of the font to black on the mailto and hyperlink below? They display as a very light grey on my page


<a href="mailto:tri*@par*.com">tri*@par*.com</a><br />

<a href="https://www.ccb.state.or.us/search/search_results.asp?id=197***" target="_blank"> OR CCB# 197***</a><br />



I can proivide the real code or webpage if needed.
 
Last edited:
Code:
<a href="mailto:tri*@par*.com" style="color:hotpink;" >tri*@par*.com</a><br />

Basic CSS inline styling.. set the color to what ever.
CSS Styling Links
 
Thanks so much!

I knew what the code was. I could not for the life of me figure out where to put it.
 
Just out of curiosity, why is the default color for links a light grey? Is that dictated by code somewhere in the CSS folder?
 
Back
Top