View Single Post
Old 10-21-2025, 08:08 AM   #18
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,719
Karma: 150249619
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 Karellen View Post
The epub file is easier to understand rather than a separate css list.

The para is here...
PHP Code:
div.header.boxed-text .para {
    
displayblock;
    
margin-top0.6em;
    
line-height150%;

and it is adding .6em spacing and an oversized line height.

Your choice is to remove that margin-top value (might have unintended consequences in other parts of the book for the div.header.boxed-text use
or
remove .para from there and add it as a separate entry in the css without the spacing. eg...
PHP Code:
.para {
  
displayblock;
  
margin-top0;
  
margin-bottom0;
  
text-indent1em;

Forget .para as it's excess code that's not needed.
JSWolf is offline   Reply With Quote