The only thing I want a user to do is be able to change a block of text defined by a predefined CSS style. I've removed all of the tool bar buttons except Formatting Styles and Paragraph Format using:
config.toolbarGroups = [
{ name: 'styles' }
];
I know that you can modify what is in the Paragraph Format list using:
config.format_tags = 'p;h1;h2';
But I dont' want the button or list to be there at all.
In the screenshot provided all I want is the Formatting Styles button. Ideally I would also like to change the width of that button to be wider.
Thanks for your help!
Just remove the button
In your config file, just add
config.removeButtons = 'Format';
or, better yet, just remove the format plugin altogether:
config.removePlugins = 'format';