Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #183702

    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

    #184094

    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

    #184378

    Thank you so much Ismael!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Html tag and Not working!’ is closed to new replies.