I am attempting to match an author's layout which includes unordered lists nested within ordered lists in a WP for Joomla article. The result is that the nested unordered lists are being presented as ordered lists.
That is:
<ol>
<li>Blah about
<ul>
<li>Stuff, and</li>
<li>Stuff</li>
</ul></li>
<li>And also about
<ul>
<li>Other stuff, and</li>
<li>Even More stuff</li>
</ul></li>
</ol>
Appears as:
1. Blah about
1. Stuff, and
2. Stuff
2. And also about
1. Other stuff, and
2. Even More stuff
It's not a disaster, but it doesn't match the author's submitted text.
Clever suggestions, solutions?