Hi,
I’m trying to include two colors for a special heading. Usually I just locally format the font color in the edit box like this…
This is my new<font color=”red”>font color</font>
Since the last update, the special heading disappears with inline formatting.
Any work-arounds?
Thanks for your help,
Steve
Hi Mike,
Yes that works in the subheading. I was trying to have two different colors in the Special heading title.
So my main heading would read “Big Sale Today Only” where big sale would be in black and today only would be in red.
Steve
Hi,
Try this:
<font style="color:black">Big Sale <span style="color:red">Today Only</span></font>
Best regards,
Jordan Shannon
Jordan,
That didn’t work either.
It seems that any formatting to the special headline makes the text completely disappear.
I’ll just use a regular text box for the two color text.
Thanks,
Steve
Hi!
You can try following
<span class="custom-red">Here is my red text!</span>
<span class="custom-yellow">Here is my yellow text!</span>
And then you can add following code to Quick CSS in Enfold theme options under General Styling tab
.custom-red { color: red; }
.custom-yellow { color: yellow; }
Cheers!
Yigit