View Single Post
Old 08-11-2024, 06:43 PM   #10
Karellen
Wizard
Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.
 
Karellen's Avatar
 
Posts: 1,616
Karma: 9500498
Join Date: Sep 2021
Location: Australia
Device: Kobo Libra 2
Quote:
Originally Posted by frankiesgal View Post
... 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 View Post
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.
Karellen is offline   Reply With Quote