More Robust WYSIWYG Rich Text editor

Greetings:

A suggestion to install a more robust rich text editor to allow for lists that include upper case, lower case, roman numerals, font size and family, etc.

Thanks much for the consideration.
~Adam

@SafetyUniversity

This is really more of a CSS change.

Just add either of these to the CSS tab:

ol {
    list-style-type: upper-roman;
    
}

Or

ol {
    list-style-type: lower-alpha;
    
} 

This will change it for all Organized Lists (numbered).

To just apply this to a specific List, you can do so by targeting it more directly. For example:

#x_element_page_40_3 ol {
    list-style-type: upper-roman;
    
}

Just replace the x_element_page_40_3 with the ID of the HTML element you have in mind.

Thanks Moe, I’ll post a note in the “Tips and Tricks” section.

Cheers,
Adam

1 Like