I have a wordpress installation and all the superscripts come out to high:
Is there a way to get the footnote and other material in <sup></sup> down? By some CCS I could add to the page? Thanks!
<sup></sup>
2
Instead of sup you can use sub. But if you can’t change it to a , try to add a position absolute and some margin top
// html <p>Footnote<sup>1</sup></p> // styles p sup { position: absolute; margin-top: 10px; }
Instead of the default vertical-align: sup; you could change it to top and adjust the position with top and minus value;
vertical-align: sup;
sup { vertical-align: top; position: relative; top: -0.2em; }
Click here to cancel reply.
2
Answers
Instead of sup you can use sub. But if you can’t change it to a , try to add a position absolute and some margin top
Instead of the default
vertical-align: sup;
you could change it to top and adjust the position with top and minus value;