Quote:
Originally Posted by foosion
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
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.