View Single Post
Old 12-23-2015, 10:34 AM   #7
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 polizoto View Post
After using the page-list plug in and then exporting to EPUB3 with EPUB3-itizer, I am still not getting the list of page numbers in my TOC. Any thoughts?
If you've used the latest version of the epub3 plugin, the page list section will be automatically hidden via css.

If nav.xhtml actually contains a page-list section, locate the style section and delete the page-list id marked in Magenta:

Code:
    <style type="text/css">
    nav#landmarks, nav#page-list { display:none; }
    ol { list-style-type: none; }
    </style>
Note that some ePub3 apps, e.g. Azardi, actually ignore the nav page-list section and won't display page numbers unless they've been marked using the following syntax:

Code:
<span epub:type="pagebreak" id="page1">1</span>
Other ePub3 apps won't display pagebreak page numbers in the book at all.

What app did you use for testing? If you used iBooks you'll need to activate the page number display, because they're hidden by default.
Doitsu is offline   Reply With Quote