View Single Post
Old 05-02-2012, 07:07 PM   #2
crutledge
eBook FANatic
crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.crutledge ought to be getting tired of karma fortunes by now.
 
crutledge's Avatar
 
Posts: 18,301
Karma: 16078357
Join Date: Apr 2008
Location: Alabama, USA
Device: HP ipac RX5915 Wife's Kindle
Quote:
Originally Posted by DanPotter View Post
okay I'm making this ebook as an epub first via sigil. Then using amazon to convert it to mobi

I have the NCX file working. I have a linked table of contents, but it cannot find the TOC nor the start of the text (opens on the title page)

I think the trouble is with these lines of code on the bottom of my content.opf file.

<guide>
<reference href="toc.xhtml" title="Table of Contents" type="toc" />
<reference href="Chapter 1.xhtml" title="Beginning" type="text" />
</guide>

Can anyone help?
The guide should look something like this:

Code:
  <guide>
    <reference href="Text/The%20Mystery%20of%20Room%2075.htm" title="Cover" type="cover" />
    <reference href="Text/The%20Mystery%20of%20Room%2075_0002.xhtml" title="Title Page" type="title-page" />
    <reference href="Text/The%20Mystery%20of%20Room%2075_0003.xhtml" title="Table Of Contents" type="toc" />
    <reference href="Text/The%20Mystery%20of%20Room%2075_0004.xhtml" title="Start Reading" type="start" />
  </guide>
I think in your code
Code:
<reference href="Chapter 1.xhtml" title="Beginning" type="text" />
Should be
Code:
<reference href="Chapter 1.xhtml" title="Beginning" type="start" />

Last edited by crutledge; 05-02-2012 at 07:12 PM.
crutledge is offline   Reply With Quote