Quote:
Originally Posted by virtual_ink
Thanks Harry, this sounds like the problem. I've tried your fix but am having problems as my H tags contain the following:
<h1><id="toc_marker-2" class="chapterheader"><span class="Bold">Chapter 1<br/>Subheading for Chapter 1</span><span class="Bold-Italic">including these bold itals within the subtitle</span><span class="Bold"> subtitle continues in roman bold</span></h1>
I've tried switching this to:
<id="toc_marker-2"/> <class="chapterheader"><span class="Bold"><h1>Chapter 1<br/>Subheading for Chapter 1</span><span class="Bold-Italic">including these itals within the subtitle</span><span class="Bold"> subtitle continues in roman bold</h1></span>
But it won't validate. here's the error message:
Element type "id" must be followed by either attribute specifications, ">" or "/>".
|
Change to...
<h1 id="toc_marker-2" class="chapterheader"><span class="Bold">Chapter 1<br/>Subheading for Chapter 1</span><span class="Bold-Italic">including these bold itals within the subtitle</span><span class="Bold"> subtitle continues in roman bold</span></h1>
That should work as it will jump to the h1 tag and not after it.