Where do change the color of the ‘linked’ text. Right now it seems to be defaulted at blue.
Example page:
http://fiveshock.com/clients/edmelendez/2012/02/17/flashback-friday-02172012/
Thank you.
Where do change the color of the ‘linked’ text. Right now it seems to be defaulted at blue.
Example page:
http://fiveshock.com/clients/edmelendez/2012/02/17/flashback-friday-02172012/
Thank you.
Hello ed,
you can change the link color using this code in a child theme or simple css plugin:
a {
color: #ccc;
}
a:hover, a:focus {
color: #999;
}
The first color changes the normal color and the second one is when you go over the link with your mouse.
Best regards,
WeAreOne