Often when using text, I want to make a specific part of a paragraph or heading stand out more by changing its colour so that it is more noticeable than the rest of the text content. This is not something that can be done out of the box with the heading or paragraph widget.
In this tutorial, I show you how to change the font colour of a specific piece using CSS classes. You will need to target a specific part of the text with a span, and then apply a CSS class to change the colour. If you would like the code used in this video, click the link below to my blog post about this topic, where you can copy and paste it to your website.
.green-text {
font-color:#00fe4c;
}