x

Mixing Numbered & Bulleted Lists

I would like to create a mixed numbers bullets list in my blog page, but everytime I go back to numbers, it starts over at 1.

What I would like:

1. Go to Store

  • Get Milk
  • Get Cheese
  • Get Yogurt

2. Go to Home Depot

  • Get Wood
  • Get Tools
  • Get Dirt

Even in this text editor, I have to manually do the numbers and can't do the numbered list feature.

Thanks in advance for any suggestions people can give.

-Keith PW

granadapw.weebly.com

750 Views
Message 1 of 4
Report
1 Best Answer

Best Answer

In HTML code those are two different HTML elements, order lists <ol>, which use numbers and letters, and unordered lists <ul>, which uses bullets. There really isn't a way to combine the two without hand-coding it in the embed code element, e.g.

<ol>
    <li> 
        Go to the Store
        <ul>
            <li>Get Milk</li>
            <li>Get Cheese</li>
            <li>Get Yogurt</li>
        </ul>
    </li>
    <li>
        Go to Home Depot
        <ul>
            <li>Get Wood</li>
            <li>Get Tools</li>
            <li>Get Dirt</li>
        </ul>
    </li>
</ol>

View Best Answer >

745 Views
Message 5 of 4
Report
3 REPLIES 3

Best Answer

In HTML code those are two different HTML elements, order lists <ol>, which use numbers and letters, and unordered lists <ul>, which uses bullets. There really isn't a way to combine the two without hand-coding it in the embed code element, e.g.

<ol>
    <li> 
        Go to the Store
        <ul>
            <li>Get Milk</li>
            <li>Get Cheese</li>
            <li>Get Yogurt</li>
        </ul>
    </li>
    <li>
        Go to Home Depot
        <ul>
            <li>Get Wood</li>
            <li>Get Tools</li>
            <li>Get Dirt</li>
        </ul>
    </li>
</ol>

746 Views
Message 5 of 4
Report

Thanks for that. Even though it's a limitation, at least I know that I can't do it easily at the present time.
728 Views
Message 5 of 4
Report
Square

Thanks for sharing! 

726 Views
Message 5 of 4
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.