Copy link to clipboard
Copied
Copy link to clipboard
Copied
You might prefer a CSS solution, particularly if you "want the document a bit tidier." If the following works for you, you would place the CSS elements in your CSS style sheet, rather than in the HEAD section of the topic(s), as demonstrated here for the example. If other types of lists interfere with this combo, you might want to assign CSS classes to it, such as ol.multi1 dl { }, ol.multi1 dl ul { }, then calling the outer list in the HTML as <ol class="multi1">.
Test this in the HEAD section of a topic:
<style type="text/css">
ol dl {list-style-type:none;}
ol dl ul {list-style-type:circle;}
</style>
Test this in the BODY section of the same topic:
<p>Example of multi1 list:</p>
<ol>
<li>First number</li>
<dl>
<li>First none</li>
<ul>
<li>First bullet</li>
<li>Second bullet</li>
</ul>
</dl>
<li>Second number</li>
</ol>
Naturally, you can set the margins, spacing, etc. in your CSS attributes to suit yourself. See the W3C web site for further help. They even have nice little "Try it yourself" sections where you can experiment in real time.
Good luck,
Leon
Copy link to clipboard
Copied
Create the multi-level list using the supplied BasicNumber and leave Level 2 set at the default "a".
Open the CSS in Notepad. Find the line below and remove whatever is between the quotes so that it is as shown.
x-lvl-2-format: "";
When you hit the indent from a level one item, you should see what you want.
See www.grainge.org for RoboHelp and Authoring tips