Quote:
Originally Posted by masterz87
I was trying out coolreader again and for some reason the line-height is set to way too high. I tried the space setting and it did nothing. And spacing is set to half what it was and it's still not that great. Basically after every <p> there's 2 blank lines right now and it's annoying me.
|
That sounds as if the spacing after a paragraph has been coded in the ebook stylesheet or embedded styles. If this is on just one book, try opening it in an editor (Calibre or Sigil for epubs) and check the styles applied to a paragraph. You will likely find margin or padding items that are the cause.
One ebook I looked had the following as the default indented paragraph code:
Code:
.indent {
display : block;
font-size : 0.87em;
line-height : 1.1;
padding : 0 0 1.5em 0;
margin : 0 0 0.2em 0;
text-align : justify;
text-indent : 4%;
}