Hi,
How can I change the font color of the “IN CASE YOU NEED HELP” text of this page, http://kriesi.at/themes/enfold/pages/help/.
I use the same theme color but only get the font in black which looks ugly with the background. However, I don’t see a way to change the color with the editor as there is no such a selection there.
Thanks,
Hey,
You can change the color of h2 tag using this on your custom.css or Quick CSS:
.socket_color h2 {
color: red;
}
Regards,
Ismael
Hi Ismael,
I just want to change the color of that particular text, not the h2 tag for the entire site.
Is it all right to use “<span style=”color: #ffffff;”></span>” for the h2 content?
thanks,
Hi yukanl,
Yes that should be fine. You can also target the color section by giving it an ID and then style that h2 within (or whatever header you have it set to).
Regards,
Devin
Thank you, Devin.