View Single Post
Old 06-29-2022, 12:40 AM   #7
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,622
Karma: 9500498
Join Date: Sep 2021
Location: Australia
Device: Kobo Libra 2
Quote:
Originally Posted by retiredbiker View Post
But for the odd short footnote in fiction, I really like your approach! I've recently done a few almost like this, but without even coding the <a and <href -- I just stuffed it in after the paragraph. There were, I think, two short footnotes in the whole book.

On paper, you would just glance down at the bottom of the page. So sticking it below the paragraph in an epub worked pretty much the same. Next one I run into, I'll try coding it it your way. No laughter at all.
Thanks @retiredbiker

Sometimes trying to click on those tiny links with my sausage fingers causes me to call up the dictionary, highlighting, context menu... everything but the footnote, then when I eventually jump to the footnote, I realise it was nothing worth reading and have lost the flow of reading.

Having it right there as shown in the image, I can quickly glance/read the footnote without fuss and then continue reading without lifting a finger And it does in a small way replicate the pbook treatment of having the footnote at the bottom of the current page.

My CSS if it helps anybody...

Spoiler:
PHP Code:
.footnote {
  
displayblock;
  
font-familysans-serif;
  
font-size0.7em;
  
margin-top1.5em;
  
margin-bottom1.5em;
  
margin-left4em;
  
margin-right4em;
  
text-indent0;
  
border-top1px solid black;
  
border-bottom1px solid black;
  
page-break-insideavoid;
  
text-alignjustify;

Karellen is offline   Reply With Quote