Change color of link text

Hello,

I have tried to change the color of the text from dark grey to light grey but I am unable to do so (I tried custom CSS and editing the styles.css). Can you please help me change the color of the link titles below? Thanks.

https://www.theshepherdmoon.com/

Regards,

msra9bz2

Hi @msra9bz2,

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

You can try changing colors of those titles by adding the following CSS code in the Custom CSS option of your theme on the below path.

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

.home .entry-content h1 > a {
    color: #b5b0d6;
}

You can change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

Hello Movin,

Thank you very much that works neatly! Is it possible to change for all the headers and all posts and pages?

Bogdan

Sure just remove .home from above shared code to make it work on all pages.