Change default font type/size in TinyMCE

前端 未结 5 606
耶瑟儿~
耶瑟儿~ 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:15

    For people having troubles adding a stylesheet because of path troubles or whatever reason, this should do it pretty simple:

    setup : function(ed) {
         ed.on('init', function(){
             $(this.getDoc()).find('head').append('');
         });
    }
    

    Note I used jQuery, but can of course be done without it as well.

提交回复
热议问题