View Single Post
Old 03-30-2012, 01:14 PM   #3
jswinden
Nameless Being
 
Quote:
Originally Posted by somkk View Post
Hi All,!!!

I'm converting from HTML -> Mobi using Calibre.

Plz look at the attached screenshot.

The number "168", and the horizontal line below it, actually mark the ending of a page.

Similarly, the number "169" below, is the page number of the next page.
However, in Kindle, these are being shown as one continuous page!

Plz ignore the colored letters at the bottom of the page. They're scanning artifacts.

Note - Currently, the Horizontal bar inserted into the HTML file, is for identifying where a page ends.

What should I do to make these show as separate pages on the Kindle ?

Thank you!!

PS - A lady friend is leaving for Australia soon.
I want to send her a few books, in a readable format!

Help is greatly appreciated!!

The best way to force page breaks is to use HTML as the source for the mobi. Then in the HTML use CSS (Cascading Style Sheets). In your CSS define an element for which you want page breaks to occur before. For example, you can define H1 headings to have a page break before them. To do this, use the following CSS code:

Code:
h1 { page-break-before: always; }
  Reply With Quote