View Single Post
Old 10-06-2018, 06:24 AM   #12
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,584
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by Banjo View Post
Not being able to reorder the chapters is kind of a serious flaw. I can change the order by unzipping the epub file and editing the content.opf file, but that is a pain.
You don't have to unzip the epub to reorder the chapters. Simply rearrange the items in the spine section of content.opf, save the epub and re-open it. For example:

change:

Code:
  <spine toc="ncx">
    <itemref idref="TOC.xhtml"/>
    <itemref idref="Chapter1.xhtml"/>
    <itemref idref="Index.xhtml"/>
    <itemref idref="Chapter2.xhtml"/>
  </spine>
to:

Code:
  <spine toc="ncx">
    <itemref idref="TOC.xhtml"/>
    <itemref idref="Chapter1.xhtml"/>
    <itemref idref="Chapter2.xhtml"/>
    <itemref idref="Index.xhtml"/>
  </spine>
Doitsu is offline   Reply With Quote