Changing Body Hyperlink Color

Hello,

I’ve managed to change the link color throughout my page with the following CSS:

a:link {
color: #0066ff;
}

However, in my posts, they seem to remain black (japanese pull saw is a link). I changed the text of the entire paragraph with:

#page #main .entry-content {
color: #000000;
}

I’m looking to actually make all text on the page black except links so if there’s an easier way to do this, can someone help? Thanks!

(This includes the header, the subtext under header, widget, etc - would like all of those black except links)

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change link color*/
p a,a:link{
color: red !important;
}

Best regards,
Support.