>strong< Text on Gym Demo

How do I change the colour of the text that displays in a bold orange highlight when the command >strong< is used?

It looks like this:

Hello my name is >strong< Andrew >/strong<

ANDREW would appear highlighted in orange and I would like to change this to red, in line with my brand colours.

Hi @mealsforstudents,

Thanks for reaching out.

Do you wish to change it globally, or just that name highlight? It’s because <strong> is being used everywhere. If you intend to only apply it for that name, then change it to something like this

<strong class="name-highlight"> Andrew </strong>

Then just add this CSS to your global custom CSS just once

strong.name-highlight {
color: red;
}

Thanks!

Thank You!

You’re welcome.

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