Hi
I am trying to get my ckeditor to look like the image marked number 1 below. So far, I have managed to get it look like it does in number 2.There are still some elements missing that I just can not get to work no matter what I try.
- I can't get the font and font size buttons to display.
- I can't get the color and background color buttons to display
- I can't get rid of that bottom part of the window as seen in number 2.
I have tried installing the font plugin and messing around with it to get it to work, but no luck.
This is what my code looks like so far, with the font and color parts that I have tried commented out.
CKEDITOR.editorConfig = function( config ) {
config.toolbar = [
{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] },
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent' ] },
{ name: 'links', items: [ 'Link', 'Unlink' ] },
{ name: 'insert', items: [ 'HorizontalRule' ] },
//{ name: 'styles', items: [ 'Font', 'FontSize' ] },
//{ name: 'font', items: [ 'Font', 'FontSize' ] },
//{ name: 'colors', items: [ 'TextColor','BGColor' ] },
];
};
Please could someone tell me where I am going wrong here. I have spent hours trying to figure out these last few issues.
Thanks so much.
You can't add color and font
You can't add color and font buttons most likely because you've downloaded standard package which does not contain colorbutton and font plugins. Download the full package or use online builder to add these plugins.
Regarding the bottom part you just need to remove elementspath and resize plugins (by config.removePlugins) and that bar will disappear.
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Perfect - all worked. Thanks.
Perfect - all worked. Thanks.
What is the full package of color button?
I need this button for my website, please tell me what is the full package of color button, is it including panelbutton or something else?
Thank you.