Font changes in Headline

Hello. Thank you in advance for your help.

I am writing text into a Classic Custom Headline. I am using the Gym Demo (Ethos stack).

I would like to have the phrase FIND THE PERFECT FREE CHOIR FOR YOU

I would like the word FREE to be red. This can be done with the tag

I can’t seem to find the tag to go after the word FREE to revert back to the original font style , so the FIND THE PERFECT an CHOIR FOR YOU are the same, with FREE different in the middle of the sentence.

FIND THE PERFECT FREE CHOIR FOR YOU

What should replace the word ‘normal’ in the above example?

Thank you!!!

Alex.

Hi Alex,

Thanks for writing in! You can use the following method.

FIND THE PERFECT <span style="color:red;">FREE</span> CHOIR FOR YOU

Also you can assign a class to your span tags, instead of inline CSS.

FIND THE PERFECT <span class="my-red-text">FREE</span> CHOIR FOR YOU

And then you can add your CSS rules into your page’s custom CSS area.

.my-red-text{
  color:red;
}

Thanks!

Thank you for your help here! It worked (as always).

You’re most welcome, Alex. :slight_smile:

Have a nice week ahead.

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