Quote:
Originally Posted by Asawi
Well, if I'm to do them individually I can just as well do them in Calibre ePub>ePub, but I'd like to do a bulk convert to have my existing library work with my different style sheets. I use different CSS for different devices but like to keep the books in one library. Everything except line spacing works well.
|
This may be too late to help, but just in case...
You may not need to reconvert at all. Many Sony users create their PRS+ css files containing a line something like:
Code:
body {
font-family: whatever;
line-height: whatever;
... etc etc
}
This is often not adequate to override the css in calibre-created epubs. You might have more luck if you edit the PRS+ css file to:
Code:
body, body.calibre, body.calibre1, body.calibre2, body.calibre3 {
font-family: whatever;
line-height: whatever;
... etc etc
}