View Single Post
Old 05-30-2024, 04:56 PM   #8
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,739
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by tomtomtom View Post
But should I not have Landmarks in the navigator on Kindle? I do have links to landmarks in the internal TOC but I'd also like them in the side navigator.
Landmarks are usually defined in a special landmarks section that is missing in your nav doc.

Try wrapping them in a separate landmarks nav section:
Spoiler:

Code:
<nav epub:type="landmarks">
    <ol>
        <li><a epub:type="cover" href="FrontCover.xhtml">—Front cover</a></li>
        <li><a epub:type="cover" href="BackCover.xhtml">—Back cover</a></li>
        <li><a epub:type="titlepage" href="TitlePage.xhtml">—Title page</a></li>
        <li><a epub:type="copyright-page" href="Datapage.xhtml">—Copyright</a></li>
        <li><a epub:type="bodymatter" href="cover.xhtml">—Start of Introduction</a></li>
        <li><a epub:type="bodymatter" href="LongDescription.xhtml#_idParaDest-23">—Extended image description</a></li>
        <li><a epub:type="backmatter" href="POPad.xhtml">—Ad for Power of Peasants</a></li>
        <li><a epub:type="backmatter" href="BriefAd.xhtml">—Ad for a Brief History of England</a></li>
  </ol>
</nav>

Last edited by Doitsu; 05-30-2024 at 04:59 PM.
Doitsu is offline   Reply With Quote