View Single Post
Old 02-18-2021, 07:09 AM   #1
Oxford-eBooks
Zealot
Oxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of lightOxford-eBooks is a glorious beacon of light
 
Posts: 138
Karma: 12096
Join Date: May 2010
Device: Loads!
iBooks... text missing. Making me crazy!

I'm getting some really odd feedback from a client that we're developing a "slightly complex" eBook for (epub ver2). It's got some images in and some boxes, nothing funky, and all stuff we've done before.

But they keep saying that chunks of the content are MISSING when looking on iBooks (Mac).

eg: One chapter has endorsements and they wanted to make sure that the name stays with the quote, so we wrapped it in the div with page-break-inside:avoid

so...
Code:
<div class = "group">
<p>Great book!</p>
<p>- A reviewer</p>
</div>

<div class = "group">
<p>Changed my life!</p>
<p>- Another reviewer</p
</div>
:
etc

CSS:
.group{
	page-break-inside:avoid;
}
Looks just fine on ADE, Kindle Sim (mobi export) and in iBooks on my (old) iPad... cant figure out what's going on here.

Also, they say that other chunks are missing after forced page-breaks.


Code:
<p>yadda yadda</>
<div style='page-break-before:always;'></div>
<p>start of new page</p>

this has always worked... or at least degraded gracefullyand just not done a page-break.
Oxford-eBooks is offline   Reply With Quote