Friends, I have been integrating CKEditor 4, but to display the toolbar has plenty of space, which can be?.
The configuration of the tool position from a separate file, the code is as follows:
<textarea id="ck-content" name="ck-content"></texarea>
<script>CKEDITOR.replace( "ck-content", { customConfig: "toolbars/default/announcements.js" } );</script>
and file announcements.js:
CKEDITOR.editorConfig = function( config ) {
config.toolbar= [['Save', 'Maximize', '-', 'PasteFromWord', '-', 'Undo', 'Redo'],
['Link', 'Unlink'],
['ImageManager', 'MascotManager', 'Mindmaps', 'VideoPlayer', 'Audio', 'Smiley'],
['Table'], ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'TextColor'],
['Bold', 'Italic', 'Underline'],
['JustifyLeft', 'JustifyCenter', 'JustifyRight'],
['Format', 'Font', 'FontSize', 'Source']];
};
