View Single Post
Old 10-23-2017, 06:12 AM   #10
doubleshuffle
Unicycle Daredevil
doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.doubleshuffle ought to be getting tired of karma fortunes by now.
 
doubleshuffle's Avatar
 
Posts: 13,944
Karma: 185432100
Join Date: Jan 2011
Location: Planet of the Pudding Brains
Device: Aura HD (R.I.P. After six years the USB socket died.) tolino shine 3
Quote:
Originally Posted by franklekens View Post
I've just tried manybooks.net again and see that I don't like their formatting. In their epubs, all paragraph breaks get a blank line, I *hate* that.
Never used manybooks, but out of interest I 've just downloaded a book from them. VERY basic formatting, but what bugs you is very easy to fix:

Open book in Sigil or the Calibre Editor, check for the standard paragraph class (in my example it's calibre5), open the stylesheet and change this

Code:
.calibre5 {
    display: block;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1em
    }
to this:

Code:
.calibre5 {
    display: block;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-indent:1.2em
    }
Done in a minute. I think Calibre (which I don't really use) also has ways to automatically change some formatting.
doubleshuffle is offline   Reply With Quote