Quote:
Originally Posted by brahms
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