main text color in posts not changeable

Hello!

When I want to change the main text color using customize - colors - text color the mian text color of posts does not change, see attachment. The green color is the text color set in the menu, but I expect the other text to be green as well.

Can I change this myself using css or is this a but that can be fixed?

Jarno

Hi,

Can you pass us the Website address, and the text color you want to change, so that I can give you the Custom CSS to fix the issue?

Let us know,

Thanks,
laranz.

Hello Laranz,

thank you for your answer!

I am currently testing the theme out at a temporary url: reis.jarnopunt.nl

everything currently green is changed using customize / colors / text color but if you go to Travel – Tilan, Sabine & Jarno you can see the main text is still gray instead of green.

I hope this can be changed?

Kind regards,

Jarno

Hi,

Go to Appearance -> Customize -> Additional CSS and add this CSS Snippet in it,

p, a {
    color: #00a802 !important;
}

Use the above it changes all the text color including the menu and the post title, excerpts to be green. If you just want the excerpts to be green then use this CSS,

.post-content .entry-content p {
    color: #00a802 !important;
}

Let us know,

Thanks,
laranz.