Hi,
I use CKEditor 4 and I want to set default font. I added "font_defaultLabel" with my font choice but it doesn't work ...
I found this solution on the Internet but it's a trick for me and not a true solution :
CKEDITOR.on( 'instanceReady', function( ev ) {
ev.editor.setData('<span style="font-family:Arial, Verdana, sans-serif;">­</span>');
});
Can someone help me?
StackOverflow : http://stackoverflow.com/questions/16339258/ckeditor-4-how-to-set-default-font
EpokK

Why don't you just add it to
Why don't you just add it to a css file?
A CSS variable without LESS /
A CSS variable without LESS / Sass / Stylus ?
No just a standard css file
No just a standard css file like mypersonalcssfile.css stating the default font.
I have e.g.
body { font-family: 'Trebuchet MS', 'Verdana', 'Arial'; }Yes but my font-family is a
Yes but my font-family is a variable :(