View Single Post
Old 09-24-2016, 02:51 PM   #9
Hitch
Bookmaker & Cat Slave
Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.
 
Hitch's Avatar
 
Posts: 11,503
Karma: 158448243
Join Date: Apr 2010
Location: Phoenix, AZ
Device: K2, iPad, KFire, PPW, Voyage, NookColor. 2 Droid, Oasis, Boox Note2
Quote:
Originally Posted by brahms View Post
I wondered whether having in the <guide> the 'begin reading' page set to the title page is part of the problem.

Turns out it's not that. If I click Title page in the ToC it shows the cover.
Howdy:

I'm not 100% sure that we're handling the SAME bug, but, on the chance that it helps/works, make sure that in the navmap, you change this

Code:
<navPoint id ="title001" playOrder="1">
<navLabel> <text>Title Page</text> </navLabel> <content src ="content/title001.html"/> 
</navPoint>
to something MORE LIKE this:

Code:
<navPoint id ="title001" playOrder="1">
<navLabel> <text>Title Page</text> </navLabel> <content src ="content/title001.html#tt"/> 
</navPoint>
...in which "tt" is the id for a paragraph location on the title page. We use it for the paragraph enclosing the title (of the book) on the title page, like so:

Code:
<div class="booksection">
<p class="title" id="tt"><b>YOUR BOOK NAME HERE</b></p>
<p class="title1">SUBTITLE HERE</p>
<p class="title2">BYLINE HERE</p>
</div>
This is a known bug; we've been using this workaround for a few years now, IIRC. At least, I believe we're solving the same issue.

Hope that helps.

Hitch
Hitch is offline   Reply With Quote