I've got a config.js file that looks like:
CKEDITOR.editorConfig = function( config )
{
config.stylesSet = 'custom:/themes/custom.js';
config.contentsCss = '/assets/css/master.css';
};
I can see the styles that I've defined in my custom.js in CKEditor's styles dropdown, but when I apply them to elements in the WYSIWYG editor, the styles don't show in the editor, but they do when the entry is published. Is there something else I'm missing? :?
config.contentsCssat the same css you're using on the main site? I mean, with layout rules and other stuff? If so, try checking selectors for your text styles—maybe that rules don't apply inside CKEditor area. (In my case, with pretty complex rules in master stylesheet, it was necessary to create a separate css file with only typography-related styles for this to work.) – Anton Strogonoff Jun 9 '11 at 17:09