How to change Headline color

Hello,
I have imported gym demo but i cant change the color of the following tag <strong </strong its always bringing red color how to change it?

Hi Ole,

Thanks for reaching out.

Would you mind providing more details like the screenshot of the area from the demo? And please provide the site’s URL that has this tag. That tag is a generic one that may be changeable through CSS only. Or, you’re referring to sub-elements of a content.

Cheers!

as you can see with the Headline HELP YOU its in red color how to change it to black color because its closed with the tag <Strong /Strong>

Hi Ole,

Check your custom CSS rules for example (X -> Theme Options -> CSS) area and there should be a CSS rule as follows.

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: inherit;
    color: #ff551d;
}

You can change the font color to black or you can also add a new CSS rule into your X -> Theme Options -> CSS area to change the color.

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    color: #000000;
}

Hope that helps.

thank you so much

You are most welcome. :slight_smile:

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