Days
Hours
Minutes
Seconds
x
Skip to content
Froala Documentation

List Style Types in Froala Editor

List Advanced Types

Using the listAdvancedTypes option it is possible to change the list style on the selected list inside the WYSIWYG HTML editor. This way you could use advanced list styles such as lower greek or upper roman.

Try it yourself:


Edit in JSFiddle

HTML

<div id="froala-editor">
  <ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
  </ul>
</div>

JAVASCRIPT

<script>
  new FroalaEditor('div#froala-editor', {
    listAdvancedTypes: true,
    toolbarButtons: ['formatOL', 'formatUL']
  })
</script>