Hi!
I have some text than need <sup> and other <sub>
In edit mode this show ok! but when you go online is not working!
I add some css in theme options for try and don’t work too!
.sup {
font-size:xx-small;
vertical-align:top;
}
How can I fix this!?
Thank you so much!
Pablo
Hey krear!
You can add this on your custom.css or Quick CSS:
sup {
font-size: .6em;
position: relative;
top: -5px;
}
sub {
font-size: .6em;
position: relative;
bottom: -1px;
}
Best regards,
Ismael
Thank you so much Ismael!!