SCEditor - make the default font Arial

164 Views Asked by At

How can SCEditor be forced to start with Arial as its default font when it is empty? The default appears to be a Serif font - perhaps Times.

2

There are 2 best solutions below

0
On BEST ANSWER

The default style of WYSIWYG content is the browsers default style.

It can be changed by setting the style option in the constructor. It's recommended to use (or base your style on) the content/default.min.css style as it contains some other important CSS. Something like:

sceditor.create(textarea, {
    // other options here
    // ...

    // Set the style for the content of the editor
    style: 'https://cdn.jsdelivr.net/npm/sceditor@3/minified/themes/content/default.min.css'
});

or it can be set via the css() method, e.g.:

instance.css('body { font-family: Arial, sans-serif; }');
0
On

A bit late to the answer, but hope this helps anyone looking to set the Editor's default font.

Create the editor like this:

var obj = $('<selector>');
sceditor.create(obj, {
  // Options go here
});

Then do

var instance = $(obj)[0]._sceditor;
instance.css('body { font-family: Helvetica, Arial, sans-serif; }');

Thanks.