Changing all gray font color to black

Previously you gave me custom code to change body font and header color to black. I want to change all the font that is currently gray on my site to black, including all sub heads as well. Can you help with this?

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it?

Best Regards,
Support

Thank you!

hey there

Please add this CSS in appearance - customize - additional CSS

body {
color: #000000;
}

Thanks!
Colorlib Support Team

That did not work

Hello there,

Try this CSS:


a, p, span, h1, h2, h3 {
    color: black !important;
}

Best Regards,
Support

That almost works! Doing that also turns my hyperlinks from green to black and I would like them to stay green. Anything I can do to keep them that way?

HI

Use this version of code above:

p, span, h1, h2, h3 {
color: black !important;
}

It worked! Woohoo! Thanks so much

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support