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
body, td, pre
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.