Quote:
Originally Posted by tschucha
"The line spacing can be solved by including "line-height: normal" into your CSS file (for instance in the body {} section)."
That's what I am looking for clarification on. Where can I find the css file that includes the body {} section?
|
Not all ebooks have css for the body tag. Or they may have a div tag that encloses the entire chapter, which may need its css fixed. If your stylesheet.css or whatever it's called doesn't have anything for the body tag you can add it;
Code:
body {
line-height: 1.2; /* or normal */
}