- This topic has 4 replies, 2 voices, and was last updated 7 years, 3 months ago by .
Change the Global Font Color
You must be logged in to reply to this topic.
Hello there,
In demo site, the color for text (home page section text, blog post, other areas) is something like grey. It’s not good, IMO, against the white/light color for the background. Color for heading is quite good because it’s darker.
Is that possible to do it? Via additional CSS?
I’m not familiar with CSS, but maybe someone can help me. 🙂
Best,
🙂
Hello @eljuno,
Hope you are doing well. You may want to add the code below to your Custom CSS section:
body {
color: #000;
}
Don’t hesitate to change #00 to your desired color.
Thanks,
Piotrek
Thanks for the reply. It’s working. 🙂
But it seems also change the text color in footer area? How can I prevent that? Or change the color for only text in footer area?
Best,
🙂
You can change the footer text color by adding this CSS code:
.copyright{
color:#000;
}
You may want to add it below previously added code.
Cheers,
Piotrek
Thanks again for the reply!
It’s working great now. Thank you for your help,
Best,
🙂
You must be logged in to reply to this topic.