Trying to add this kind of code while in text editor view:
<span style=”line-height:150%; letter-spacing:3px;”>Your text here </span>
As soon as I switch back to visual view, change is not made, and when I switch right back to text editor, the code is no longer there.
What could be causing this, and how do I fix it? Thank you.
Hey dbtpath,
Please try adding your HTML as following
<span class="your-custom-class">Your text here </span>
then add following code to Quick CSS in Enfold theme options under General Styling tab
.your-custom-class { line-height:150%; letter-spacing:3px; }
Best regards,
Yigit
Thank you Yigit!