When you use the FCKeditor with any of the Marinelli themes, the background of the editor has the same background and font as the theme, making it imposable to read or use. Image attached to this post.

CommentFileSizeAuthor
marinelli_fckeditor_issue.JPG60.05 KBimnotcreative

Comments

imnotcreative’s picture

Status: Active » Fixed

Sorry about this. It was actually a FCKeditor specific setting.
Administer / Site configuration / Edit FCKeditor profile / CSS / Editor CSS: FCKeditor default

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

denni’s picture

This will do the trick http://drupal.fckeditor.net/tricks

This is quote

"
All we need to do is to tell FCKeditor to use that styles:
Edit FCKeditor profile, in the "CSS section" choose use theme css
In modules/fckeditor/fckeditor.config.js, add the following:
FCKConfig.BodyId = "primary";
FCKConfig.BodyClass = "singlepage";
Now our body inside of the FCKeditor gets the right ID.
Well we still have the wrong background and text alignment. To fix this, add another line in fckeditor.config.js:
FCKConfig.EditorAreaStyles = "body{background:#FFFFFF;text-align:left;}";
in newer versions of marinelli theme we may also need to adjust the font size, so if you need to, use the following code instead:
FCKConfig.EditorAreaStyles = "body{background:#FFFFFF;text-align:left;font-size:0.8em}";
Remember to clear your browser's cache after applying changes to javascript files.

"