Hi all,
I'm trying to get my instance of FCKEditor to use another stylesheet. The application is coded in java and jsp so I'm using the tag library to set up the editor:
<FCK:editor id="longText"
width="100%"
fullPage="true"
toolbarSet="Test"
enableSourceXHTML="true"
enableXHTML="true"
editorAreaCSS="/rightframe.css"
customConfigurationsPath="editor/myconfig.js">
<%= policyForm.getLongText() %>
</FCK:editor>
Now the editor displays properly, with the right tool bar items that i defined in myconfig.js, but no matter what I do I can't get the editor to render the text using the rightframe.css. I've tried all sorts of different values for editorAreaCSS, relative paths, absolute paths and nothing seems to make any difference.
Any ideas??
I'm trying to get my instance of FCKEditor to use another stylesheet. The application is coded in java and jsp so I'm using the tag library to set up the editor:
<FCK:editor id="longText"
width="100%"
fullPage="true"
toolbarSet="Test"
enableSourceXHTML="true"
enableXHTML="true"
editorAreaCSS="/rightframe.css"
customConfigurationsPath="editor/myconfig.js">
<%= policyForm.getLongText() %>
</FCK:editor>
Now the editor displays properly, with the right tool bar items that i defined in myconfig.js, but no matter what I do I can't get the editor to render the text using the rightframe.css. I've tried all sorts of different values for editorAreaCSS, relative paths, absolute paths and nothing seems to make any difference.
Any ideas??
RE: EditorAreaCSS property. Does it work???
RE: EditorAreaCSS property. Does it work???
But, once I changed fullPage to false it worked! (Why that is I have no idea, and I don't really have the time to find out at the moment....)