- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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>
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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>
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Thanks for sharing!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report