I was hoping I could make our stylesheet visible in FCK by using this technique
You can precisely simulate the output of your site inside FCKeditor, including background colors, font styles and sizes and custom CSS definitions. To do that, just point this setting to the CSS file that you want the editor to use. You may use a simple string, setting the CSS file path, or even a string array, with more than one CSS file to be loaded. Example:
FCKConfig.EditorAreaCSS = '/mycssstyles/editorstyle.css' ;
I added this line:
FCKConfig.EditorAreaCSS = 'http://www.ncmove.com/template/nc-move/style.css' ;
to our fckconfig.js file
but nothing shows up unless I go into the fck_editorarea.css and dump in all my css styles. What's VERY strange is that this is working, even though I commented out the line
/* FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ; */
that's calling for the fck_editorarea.css.
What am I missing here?
Thanks for any help.
Re: Bringing in Stylesheet not going as hoped
Re: Bringing in Stylesheet not going as hoped
Yes, dumping the cache by closing the browser and starting fresh shows what's up, and in this case, changing to that line to:
causes the scrollbar to disappear and makes the text area useless.
What could that be about?