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>