To clarify this as I found the above lacked detail:
- Add a new Toolbar definition to Providers/HtmlEditorProviders/FckHtmlEditorProvider/custom/FCKConfig.js. The easiest way to do this is to copy one of the existing ones and then remove the tools you don't want. I'll give an example of mine at the bottom.
- Modify your web.config file and add your new toolbar definition to the comma separated list for AvailableToolBarSets
- You'll then need to clear the old FCKConfig.js file from your browsers (and perhaps your users) cache. I ended up navigating to the actual js file and hitting as neither F5 or Ctrl+F5 from the edit page worked for me.
My new toolbar definition that I added to the custom FCKConfig.js file:
FCKConfig.ToolbarSets["EfficionStandard"] = [
['Source','DocProps','-','Save','NewPage','-'],
['Cut','Copy','Paste','PasteText','PasteWord'],
['Undo','Redo','RemoveFormat'],
['Bold','Italic','Underline'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight'],
['Link','Unlink'],
['Image','Rule'],
['Style','TextColor']
] ;
Remember, less is more!