- This topic has 1 reply, 2 voices, and was last updated 11 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Legacy Theme Support › Link Color Change in stylesheet
Tagged: hyperlinks color
Hi:
Where in the style sheet would I change the color of hyper links found on posts and pages? Am using the default (black) color scheme…and find that links a virtually indistinguishable, so I’m thinking some variation of dark blue might be a better fit for me. I just need to know where exactly the existing color code is located (not a css guru and don’t want to risk trial & error).
Thanks
If you are using the Legacy default theme (black) then look on or around line 146 in your style.css file –
/* Hyperlinks
------------------------------------------------------------ */
a,
a:visited {
color: #000;
text-decoration: none;
}
…..and change #000 to whatever color you need.