CKEditor comes included with a handy-dandy style selector:

Unfortunately this style selector defaults to a very small width. This small width can result in larger styles being truncated:

Thankfully this can be fixed with a couple of custom styles:
div.cke_panel.cke_ltr.cke_rcombopanel { width: 300px !important; }
span.cke_rcombo span.cke_styles a span span.cke_text { width: 150px; }

Where should these styles be put?
For my own project, I was using the contentsCss setting to apply a set of custom CSS styles to CKEditor. Consequently, I simply put the styles shown above in this file.
However, these styles could also be put in the Editor.css file for the skin being used by CKEditor. (The default skin is the Kama skin.)
Lastly, it’s possible these styles might not work with other (non-Kama) skins.
Best of luck!




