View Single Post
Old 08-20-2024, 08:11 PM   #19
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,950
Karma: 169810634
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by foosion View Post
Find isn't finding "padding". To have an extra line on the page, wouldn't I need negative padding or negative bottom margins? Or would this do it:

Code:
<a class="Footnote-Reference" epub:type="noteref" href="05_Chapter_One.xhtml#footnote-002" id="footnote-002-backlink" role="doc-noteref" title="footnote">[*1]</a>
Code:
.Footnote-Reference {
  vertical-align: 0.25em;
  line-height: 0;
  font-size: 0.8em;
}
Are you looking in the CSS stylesheets? Anything with padding or margin in a class should be given a hard look. Here's a sample from a recent purchase. Please note that you can find margin and padding in a short hand format with 2 to 4 values.

margin-bottom: 2px;
margin-bottom: 0.1em;
margin-bottom: 8px;
padding-bottom: 0.25em;
padding-bottom: 6px;

You may want to check CSS Margins and CSS Padding on the W3Schools site for more information.


Quote:
Originally Posted by foosion View Post
Or is it because most files are about 50KB and that's too big for pop-up footnotes?
I seem to remember the limit is 5K in the Kobo documentation. Perhaps look at splitting your footnote files.

Last edited by DNSB; 08-20-2024 at 08:15 PM.
DNSB is online now   Reply With Quote