Change heading colors

I am trying to change all the orange elements on the Gym demo to green. When I go to edit, the text looks like this:

It’s All AboutGetting Fit

The word fit is orange - but I don’t see where that color is coming from… I like that some of the words are a different color, but how can I change the color to fit my client’s color scheme?

Hi there,

Please go to X > Launch > Options > CSS and change the color code of the code below:

For example:

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

Will change the color to:

In general search for all the instances of ff551d to the color code, you want to change different aspects of the theme to the color you like.

Thank you.

I am also using this theme and I need some assistance in how to create the same effect in other pages. I currently customized the gym home page - changed the orange color to blue,

I want to use the same 2 colors effect in classic custom headline in other pages how can I accomplish that?

this was my original post . https://theme.co/apex/forum/t/custom-headline-font-change-in-gym-demo/21170/6?u=lucykeile

Thank you!

I got it!!!

I needed to add the text this way!

Where you find the
the owner

Hi there,

It should be just the same since the above CSS isn’t specific to a page. Hence, just by adding that CSS in your global custom CSS should take effect in all pages. You just need to wrap the text with <strong></strong> to apply the color in any text or custom headline.

As for the text with line breaks, you can simply implement it like this within your custom headline

Where you find the <br>
<strong>the owner</strong>

Thanks!

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