Hi all, I'm new to the forum. I feel like such a novice and I know my questions are really basic, but web design is not my primary job. Sometimes though I am asked to do some minor things at work that have to do with coding for the web and I am the most web saavy of the lot. I like to say I know just enough to be dangerous. Here's my problem. This is a unique problem I haven't had to deal with before. I have an ordered list and one of the items on the ordered list has an unordered bulleted list below, so for example, my code looks like this:
<OL>
<LI>number list item 1 </LI>
<LI>number list item 2 </LI></OL>
<UL>
<LI>bullet list item 1 </LI>
<LI>bullet list item 2</LI></UL>
But now I want to continue my list at number list item 3. I tried taking the </OL> off to indicate I want to continue the list and placing it at the end of my code for list item 3, but the browser simply puts another bullet after the second bullet item, but promoted one level.
If anyone can help, I'd sure appreciate it - thanks.
<OL>
<LI>number list item 1 </LI>
<LI>number list item 2 </LI></OL>
<UL>
<LI>bullet list item 1 </LI>
<LI>bullet list item 2</LI></UL>
But now I want to continue my list at number list item 3. I tried taking the </OL> off to indicate I want to continue the list and placing it at the end of my code for list item 3, but the browser simply puts another bullet after the second bullet item, but promoted one level.
If anyone can help, I'd sure appreciate it - thanks.