Quote:
Originally Posted by Valkrider
There is just one thing that I don't like. All my books are in ePub format and the thing I liked about Aldiko was the way that it respected Chapters and always started those on a new page. With CR3 it just dumps the chapter in the middle of a page. Is there anyway to sort this with CSS or is it more complex than that?
|
CoolReader also starts a new chapter on a new page, with the chapter title centered and bold, with the EPUBs that I have. So it is certainly no more complex than just having the correct formatting instructions in the CSS. I have
page-break-before: always in my CSS for titles, so a page break always occurs just before a chapter title.
Code:
title, h1, h2 { text-align: center; text-indent: 0px; font-weight: bold; page-break-before: always; page-break-inside: avoid; page-break-after: avoid; }
Just in case it matters, I use my own EPUB.CSS located on the SD card in the \.cr3 folder.