Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Using the source code option in the CMS, you can choose list glyphs and combine list types (ordered and unordered) in nested lists.

Table of Contents
minLevel2
maxLevel2
outlinefalse
typelist
printablefalse

The Basic text component toolbar allows you to indent list items to create nested lists. (When you put your cursor on a list item, the indent buttons become available. Otherwise they are greyed-out.) These nested items have the same symbol or number format as the 'parent' list.

If you want to choose the type of list identifier (symbol or number format) and build nested lists that combine ordered and unordered items, you have to adjust these settings in the source code.

On this page:

Table of Contents
minLevel2
maxLevel2
outlinefalse
typelist
printablefalse

Unordered lists

  1. In the Basic text component, click on the Source option in the toolbar.

  2. Choose your list item marker from the table below and copy and paste the code snippet to replace the first tag of your list.

...

<ol start="50">
    <li>Jessica</li>
    <li>Richard</li>
    <li>Marcella</li>
    <li>Nadim</li>
</ol>

How it displays

50. Jessica

51. Richard

52. Marcella

...