I am embedding links in some of my copy but the text I use as the anchor does not change color and there is no way for the reader to know there is a link there unless they hover the cursor over the text and then it turns red. Is there a way to have the anchor text appear in color so the reader knows it is a link?
L
Lisa
Original poster
Member
ST
Spiracle Themes
Original poster
Hi Lisa,
Try the CSS below
article a {
color: #d22a2a !important;
}
Paste it in Appearance -> Customize -> Additional CSS
Best Regards
PS: If you really like our theme, please leave a review so that others can know about it.
WRITE A REVIEW
L
Lisa
Original poster
I am afraid of CSS LOL. I will try it. I am not tech savvy. Thank you for your response and clear instructions.
C
Callie
Original poster
This messes too many other things up. It changes the color of the post title and messes up link color in some widgets. Surely there’s a way to change link colors in just paragraph text not apply to the rest of the page?
ST
Spiracle Themes
Original poster
Hi Callie,
Try this CSS
.single article p > a {
color: #d22a2a !important;
}
and let us know if it works for you or not
Best Regards
C
Callie
Original poster
This worked like a charm. Thanks so much!