|
Originally Posted by Grantf44
|
|
Also, look of the size of the MSReader Ebooks your trying to open. They are in .lit format, Microsoft Reader for the pocket pc stinks when it comes to large ebooks.
|
I have discovered the secret!
From the MS Reader Layout Guide:
Page Breaks
Page breaks are always indicated by CSS properties in conjunction with a <div> or <h#>tag. The most obvious example is:
<html>
<head>
<style>
.break {page-break-before: left}
h1 {margin-top: 20%; page-break-before: left}
h2 {page-break-before: left}
</style>
</head>
This style will create a page break before any <h1> or <h2> tag and whenever a <div class="break">.
The values left and right are preferred for the page-break-before property because they enables correct pagination in future, 2-page versions of MS Reader. Page-break-before:left forces one or two page breaks so that the following content begins on a left-hand page. Page-break-before: right forces one or two page breaks so that the following content begins on a right-hand page.
Note
Page breaks serve as reference points for the Reader pagination engine. Authoring an eBook without page breaks decreases performance and increases the time required to load a book from the Library; authoring an eBook with frequent page breaks (at the start of every chapter or section) improves load time and performance, especially on smaller devices with less memory and less processor power.
*** applause ***