View Single Post
Old 02-05-2012, 08:39 PM   #4
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,699
Karma: 205039118
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Try putting the anchor outside the p tag (since you're not using h tags for your chapter headers). It's the exact same issue... your anchor in the toc link is dropping you inside the styled <p> tag instead of before it like it needs to.

So instead of this:
Code:
<p class="Chapter-Heading" id="toc_marker-2"><a id="About-the-Author" />About the Author</p>
Make it this:
Code:
<a id="About-the-Author" /><p class="Chapter-Heading" id="toc_marker-2">About the Author</p>
And leave your toc href the same as you have it now:
Code:
<a href="../Text/Introduction.html#About-the-Author">About the Author<br /></a>

Last edited by DiapDealer; 02-05-2012 at 10:11 PM.
DiapDealer is offline   Reply With Quote