View Single Post
Old 12-15-2016, 03:19 AM   #2
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by Trane View Post
IOW, I don't want more HTML pages generated... I just want page breaks at certain points for reading ease, to create a little break and white space so the reader has to turn the page to get to the next section.
All you would have to do is create a class and give it the "page-break-before: always" property.

Something like this:

Code:
<p class="newsection">Joey walked off into the jungle.</p>
and this CSS:

Code:
p.newsection {
	page-break-before: always;
}
But keep in mind that not all ereaders respect this property, so it might not work on all reading devices.
Tex2002ans is offline   Reply With Quote