Ah, that explains it.
This is the content right now:
Code:
<text>Unknown</text>
</docTitle>
<navMap>
<navPoint id="navPoint-1" playOrder="1">
<navLabel>
<text>Start</text>
</navLabel>
<content src="Text/introduction.xhtml"/>
</navPoint>
</navMap>
So if I wanted to add a link to Chapter 1, would I just change it to this?
Code:
<text>Unknown</text>
</docTitle>
<navMap>
<navPoint id="navPoint-1" playOrder="1">
<navLabel>
<text>Start</text>
</navLabel>
<content src="Text/introduction.xhtml"/>
<content src="Text/chapter1.xhtml"/>
</navPoint>
</navMap>