Hello,
What is the correct way to apply custom CSS to the editor area? I tried this (I use JavaScript to create the editor):
var editor = new FCKeditor('page_content', '850px', '600px'); editor.Config['EditorAreaCSS'] = 'http://www.example.com/css/style.css'; editor.ReplaceTextarea();
But the stylesheet is not applied (the file does exist on the server). Anyone could help?
Re: Applying custom CSS to the editor area
I had to do it this way:
myfckconfig.js contains:
You can read about it here:
http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_File
Re: Applying custom CSS to the editor area