Colored title
This guide will show you how to change the color of a whole headline, or just a portion of it.
Copy this code:
Paste it into your General settings > </body> custom HTML code
Replace the color code with your own one:
Wrap the required portion of the headline with the following tags:
The text inside these tags will now be colored, while the text outside will have the default color.
Step 1/4
Copy this code:
<style>
.colored-text {
font-family: inherit !important;
color: #FF0071;
}
</style>
Step 2/4
Paste it into your General settings > </body> custom HTML code
Step 3/4
Replace the color code with your own one:
Step 4/4
Wrap the required portion of the headline with the following tags:
<span class="colored-text">This text is now colored</span>
Done!
The text inside these tags will now be colored, while the text outside will have the default color.
Updated on: 18/12/2023
Thank you!