Quote:
Originally Posted by frankiesgal
... and replaced the footnote page break from always to avoid. Is that okay?
|
I would remove it or comment it out using
PHP Code:
/* dl.footnote {
page-break-after: always;
} */
The list has to break somewhere to flow onto a new page, so it is going to be ignored.
Quote:
Originally Posted by frankiesgal
I'd like the endnote text to be on the same line as the clickable endnote number, for a cleaner view and to reduce pages vs what the attached shows. How might I do that?
|
Removing the use of the <dl> tag set which is designed for terms and definitions to be on separate lines. See...
https://developer.mozilla.org/en-US/...TML/Element/dl
Maybe try this and see how it works...
Code:
<p><span id="note_1350" class="footnote"><a href="#back_note_1350" title="1350">1350</a></span> <span class="block_44">Harrisburg Evening News 23 Jun 1938 p18</span></p>
Though I would prefer to use a hanging paragraph, for when the description wraps onto the next line, which is probably why a <dl> was used.