View Single Post
Old 07-31-2023, 11:37 AM   #9
Quoth
Still reading
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 14,300
Karma: 105299897
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
Quote:
Originally Posted by jackie_w View Post
All those densely-packed hyperlinks are a PITA when trying to read on a phone.
You can have a CSS for the Contents Page that puts big top or bottom margins.
Code:
<p class="block_11"><a href="index_split_005.html#id_ch1" class="text_1">Chapter 1: An Unexpected Case</a></p>
Code:
.block_11 {
    display: block;
    font-family: "Droid Sans", sans-serif;
    margin-bottom: 8pt;
    margin-left: 16pt;
    margin-right: 0;
    margin-top: 3pt;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    text-indent: 0
    }
But actually that's purely the automatic conversion of a Contents page created in the ebook MSS in LO Writer odt edit, but a Save As in docx for Calibre. System TOC/NCX perfect automatic generation.

The only things at all manually edited were some large images
Code:
image-height: auto;
image-width: 90%;
12 pt ought to be 1em
The wordprocessor doesn't do em, so pt is next best.
I use cm when editing for PDFs.
Quoth is offline   Reply With Quote