Change default font type/size in TinyMCE

前端 未结 5 582
耶瑟儿~
耶瑟儿~ 2021-01-01 18:15

How do you change the default font type and font size in TinyMCE?

I\'m using the advanced skin and I\'ve changed the body, td, pre style in default/cont

5条回答
  •  清酒与你
    2021-01-01 19:09

    If you want to change the default of the dropboxes rather than the display css only, with tinyMCE 4 it is now:

    setup : function(ed) {
     ed.on('init', function(ed) {
      ed.target.editorCommands.execCommand("fontName", false, "Calibri");
      ed.target.editorCommands.execCommand("fontSize", false, "11pt");
     });
    }
    

    EDIT: this is the setup option of the init function as explained here: https://www.tinymce.com/docs/configure/integration-and-setup/#setup

提交回复
热议问题