View Single Post
Old 08-15-2023, 04:45 PM   #61
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,006
Karma: 147448039
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by theducks View Post
Knowing when (and how) to abandon some of the TadPub styles is important.

I have books that the whitespace before a chapter head is almost 25% on my Libra2 (a huge screen compared to many phones) and another 25% after
(I have saved searches that shrink that to 6%, keeping some sense of a chapter head block). Other things I see: 2em chapter heads.those only fit if ONLY numbers.

I only re-code for myself. Ans I have been doing this for almost 13Y.
FWIW I started with a 5" RMSDK based device whe there wer block number on the right edge that smeared the last letters of text when the showed.
My solution was to adjust the body margins and text size:
The right margin gave it room for 3 digits
by raising the text size, it became larger relative to the numbers. The pros have tricks that are needed to work on less compliant devices.(Kobo is a friendly device to code for)

Code:
body {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 2pt;
    margin-right: 16pt;
    font-size: 1.2em;
    text-align: justify;
    }
I find 6% too large and a waste of space. I use 0.8em top/bottom margin for most chapter titles. But if I was making eBooks for sale, I'd use 1em top/bottom for chapter titles.
JSWolf is online now   Reply With Quote