The forum operates in read-only mode. Please head to StackOverflow for support.
var editor1 = CKEDITOR.replace( 'textarea', {contentsCss: "body {font-size: 40px;}"} );
It was an in-page configuration. For details and different possibilities see http://docs.cksource.com/CKEditor_3.x/D ... igurations
$(function() { var config = { toolbar: [ ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], ['NumberedList','BulletedList','-','Blockquote'], ['Styles','Format'], ['Undo','Redo','-','Find','Replace','-','SelectAll'], ], contentsCss: ["body {font-size: 18px;}"], /*uiColor: ['#ff0000'],*/ }; $('.description_editor').ckeditor(config); });
Re: Change default font size
Re: Change default font size
Re: Change default font size
It was an in-page configuration. For details and different possibilities see http://docs.cksource.com/CKEditor_3.x/D ... igurations
Re: Change default font size