Вопрос

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...)

Это было полезно?

Решение

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top