Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Basic code placed in "text" editor disappears as soon as you switch to visual’ is closed to new replies.
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!