Question

I want to add a few extra option to the bullets dropdown on tinyMCE, is that possible?

I want to add ► type of bullet and different color options. (red, blue, etc...)

Was it helpful?

Solution

Yes. In your tinyMCE config, you need to specify:

style_formats: [
    {
         title: 'Custom Bullet',
             selector: 'ul', 
             classes: 'custom1'
         }
],

From there, you need to specify the styling in the CSS:

.custom1 { list-style-image: url('custom1.png'); }

See this for more info: https://www.tinymce.com/docs/configure/content-formatting/#style_formats

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top