Hi there,
I'm trying to strip my CKEDITOR instance right down to only allow a user to change the font to Italics or pick between two styles. I have managed to strip all buttons out apart from the Italics button.
I can add a bold button if I wish, but no others seem to appear when I want them too:
<script>
CKEDITOR.replace( 'editor1', {
toolbar: 'Latin' } );
</script>
<script>
CKEDITOR.config.toolbar = 'Latin';
CKEDITOR.config.toolbar_Latin = [ [ 'Styles', 'Italic', 'Format' ] ];
</script>
<script>
CKEDITOR.config.stylesSet = 'my_styles';
CKEDITOR.stylesSet.add( 'my_styles', [
// Block-level styles.
{ name: 'Normal', styles: { color: 'Blue' } },
{ name: 'Trade Designation', styles: { color: 'Red' } }
]);
</script>
Why won't the other buttins show?