Thank you!
I'm not sure I am following all of your points - let me attempt to clarify things.
1: I didn't understand I needed to use the special character to isolate the code. I have attempted to use the backtick character (see below)
2: I was attempting to show what I was dealing with - before, during, and after the fact to make it clear.
3: The sample code I provided is too short to jump back and forth between the lists so you probably wouldn't have been able to see it function. However, the sample page I included shows the navigation method at use on the page - just incorrect text at the target location.
4: Think of this as a table of contents that shows a subject. Then, when someone clicks on the link within the table of contents, it jumps on that page to the text that is identified. I also provide a way to get back to the list or the top of the page.
E.g. The variables as I understand it is the table of contents <a href=\"#i1\"> and the target on the webpage is <a name=\"i1\">.
I am using this method to keep lengthy journal entries for any given month together on a single webpage as illustrated by the link I provided. Also, if you notice the table of contents shows the numbers and the text is always indented incorrectly with an "A." leading as the title of the paragraph.
The following link provides:
a.) Navigation between the table of contents and the paragraph it is supposed to jump to.
b.) The correct numbering system that matches both the table of contents and the paragraph being jumped to.
http://hopekc.wordpress.com/journals/2007-2/2007-february/
I hope this code works with the backtick characters.
<h1>This is my heading</h1>
Some text to introduce the topic
<hr />
<a name=\"list\"></a>
<h2>List of events</h2>
<ol>
<li><a href=\"#i1\">item one</a></li>
<li><a href=\"#i2\">items two</a></li>
<li><a href=\"#i3\">item three</a></li> </ol>
<hr />
<ol>
<li><a name=\"i1\"></a><strong>item one</strong></li> <p>paragraph of text that goes with item one.</p>
<hr />
«<a href=\"#list\">List of Events</a>»
<hr />
<li><a name=\"i2\"></a><strong>item two</strong></li>
<p>paragraph of text that goes with item two.</p>
<hr />
«<a href=\"#list\">List of Events</a>»
<hr />
<li><a name=\"i3\"></a><strong>item two</strong></li>
<p>paragraph of text that goes with item two.</p>
<p>paragraph of text that goes with item three.</p>
<hr />
«<a href=\"#list\">List of Events</a>»
<hr />
</ol>
Thank you for your help! Daryl