Hi,
I have an ordered list that needs the items to be alphabetized and have
lines in between the items that will be subheadings within the list BUT
also need to NOT take a letter. Is there a best practice on trying to
accomplish the desired look? (examples below)

Here is the code with no validation issues but the two lines with
"Subheading" will get a letter (not desired):
                <ol type="A">
              <li><a href="a.pdf">First</a></li>
              <li>
                <div class="margin_left_minus_40px">
                  <h3>Subheading</h3>
                </div>
              </li>
              <li><a href="b.pdf">First</a></li>
              <li><a href="c.pdf">First</a></li>
              <li>
                <div class="margin_left_minus_40px">
                  <h3>Subheading</h3>
                </div>
              </li>
              <li><a href="d.pdf">First</a></li>
              <li><a href="e.pdf">First</a></li>
            </ol>

In the following list I get the desired results in the browser but does
not validate,(The tag:"div" is not allowed within: "ol"):

                <ol type="A">
              <li><a href="a.pdf">First</a></li>
                <div class="margin_left_minus_40px">
                  <h3>Subheading</h3>
                </div>
              <li><a href="b.pdf">First</a></li>
              <li><a href="c.pdf">First</a></li>
                <div class="margin_left_minus_40px">
                  <h3>Subheading</h3>
                </div>
              <li><a href="d.pdf">First</a></li>
              <li><a href="e.pdf">First</a></li>
            </ol>

I appreciate any advice,
Kevin


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*******************************************************************

Reply via email to