Actually... would be awesome if we could kinda customize the editor (by adding/removing buttons and/or re-arranging it).
Just a thought.
Actually you can although a "little" tricky as I have already done it be sure to have a backup copy handy just in case you need to refer to it or replace it
Download and open public/js/3rd_party/ckeditor/ips_config.js
I have changed the code in red to suit my forum as you can see from the original I have removed many unneeded buttons.
/* Only use font-sizes we recognize */
config.fontSize_sizes = '10/10px;12/12px;14/14px;18/18px';
/* Register our custom plug ins */
if ( inACP )
{
config.extraPlugins = 'ipsquote,ipsoptions';
}
else
{
config.extraPlugins = 'ipsquote,ipsautosave,ipsswitch,ipsemoticon';
}
config.disableNativeSpellChecker = false;
/* Define tool bars */
config.toolbar = new Array( 'ipsfull', 'ipsmini' );
config.toolbar_ipsfull =
[
['Bold', '-', 'Italic', '-', 'Underline', '-', 'Link', '-',],
['Ipsemoticon', '-', 'Ipsquote', '-', 'Font', 'FontSize', '-', 'TextColor', '-', ],
['Ipsswitch', '-',]
];
config.toolbar_ipsmini =
[
['Bold', '-', 'Italic', '-', 'Underline', '-', 'Link', '-',],
['Ipsemoticon', '-', 'Ipsquote', '-', 'Font', 'FontSize', '-', 'TextColor', '-', ],
['Ipsswitch', '-',]
];
}
Here is a link for the usable buttons although not all of them work
http://docs.cksource...s_Guide/Toolbar