HTML codeing problem?

Jack the Ripper

New member
okay because u used <dd>

<dd> means definition description if you use that you may probably use
<dl> and <dt> (definition list and term)

so just get rid all definition tags instead use <ul> or <ol> (unordered or ordered list)

<ol type="1">
<li> potatoes </li>
<li> radishes </li>
<li> Parsnips </li>
</ol>

change type I to I II III IV Roman numbers
A to A B C D E
a to a b c d e like that
 
okay because u used <dd>

<dd> means definition description if you use that you may probably use
<dl> and <dt> (definition list and term)

so just get rid all definition tags instead use <ul> or <ol> (unordered or ordered list)

<ol type="1">
<li> potatoes </li>
<li> radishes </li>
<li> Parsnips </li>
</ol>

change type I to I II III IV Roman numbers
A to A B C D E
a to a b c d e like that
 
I am currently working on the following code:

<ol>
<li>Carrots</li>
<li><dd>Potatoes</li><dd/>
<li>Radishes</li>
<li>Parsnips</li>
<ul>
<li>Carrots</li>
<li>Potatoes</li>
<li>Radishes</li>
<li>Parsnips</li>
</ol>

I want potatoes to have a number 1, radishes to have a number 2 and parsnips to have a number 2.

A present the output I am getting is:


2.Potatoes
3.Radishes
2.Parsnips

I cant see how to change the code in order to change the numbering, can anyone help me out?
 
Back
Top