CKEditor font size

2

I'm using CKEditor and would like to customize my editor. When opened, by default it would already come with Arial font size 20 for example. In my searches (between several others , and other , and other , etc ...), I found ways to change the setting for TODOS editors (or create a gambi in the configuration file for a specific one) , but I I would like to make such a change only to a specific editor in a beautiful way with JQuery. I have the following:

 $("#MeuEditor").ckeditor({
      height: 350,

      // Isso não Funciona:
      font_defaultLabel: 'Arial',
      fontSize_defaultLabel : '20'
  });

No one knows how to solve this?

    
asked by anonymous 06.10.2015 / 15:23

1 answer

0

Within the CKEditor folder, it has a file named contents.css, in this file you can change font type, color, size, among other things in your textarea.

The worst thing is that I had tried to stylise the information in the textarea in this file, but I could not see the changes I had made because of the history, it was when I had the genuineness to try another browser.

Font

    
19.07.2017 / 14:31