Quote:
Originally Posted by jiminrussell
I just tried changing the font size to something larger and then back down again and the line height appears to remain the same, same number of lines on the page so it must be the same line height, which makes sense as you have it set in the file, not using the cheat of changing in the config file. Changes made manually to the config file are overwritten as soon as you use the UI settings to make a change.
|
Thanks. That helps. It's good to know that changing the font does not screw with the line height set in CSS. It is easy enough to add line height to an ePub to get the line height I want. at the top of the CSS, I can just add in...
Code:
p, div, span , h1, h2 {
line-height 1em
}
Then any of the styles below this can modify the line height as needed.