How do i change font color

I have tried everything to find away to change the font color in the service section. How do I change this font color?

Hi @sasanp,

It seems you added the h3 tag to the raw content element, to change the color of h3 tag.

Please add the following CSS under Theme Options > CSS:

h3, .h3 {
    color: #f0f0f0 !important;
}

Hope it helps :slight_smile:

I just tried that and the color is still the same for that section.

Hi Sasan,

I checked and can see that you have change the color but your hex code is invalid

h3,
.h3 {
    color: #FFFFF !important;
}

The hex code should have 6 chars, you only added 5(#FFFFF).

Please check the link below for your color

Thanks

Yes I notice that… i just fixed it but font color for that section is still orange.

Hi Sasan,

You added double hash

Please change it to

h3, .h3 {
    color: #000000 !important;
}

Thanks

that worked… thank you

You’re always welcome!

Cheers.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.