View Single Post
Old 10-20-2025, 04:37 PM   #15
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,688
Karma: 9500498
Join Date: Sep 2021
Location: Australia
Device: Kobo Libra 2
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;


Last edited by Karellen; 10-20-2025 at 05:24 PM.
Karellen is offline   Reply With Quote