You are viewing limited content. For full access, please sign in.

Question

Question

Change text color of hyperlinks

asked on June 18, 2021

Is there an easy way to change the text color of all hyperlinks throughout a form?  Or, would you have to add html each time you want to change one from the default color?

 

Any help on this would be greatly appreciated.  Thanks!

0 0

Answer

SELECTED ANSWER
replied on June 18, 2021

Just add CSS to target the a class. 

Something like this worked for me

/* unvisited link */
a {
  color: red;
}


/* mouse over link */
a:hover {
  color: hotpink;
}
 

https://www.w3schools.com/css/css_link.asp

2 0

Replies

replied on June 18, 2021

Awesome..........thanks for the reply.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.