Using Firefox or Chrome, and editor CKeditor, the background in the editor is the same as the "global" background... would prefere a white background in the editor.

Using Drupal 6.19.

Brgds Harry

CommentFileSizeAuthor
screenshot.png153.16 KBharry.mj
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Deepika.chavan’s picture

Hi,
In modules/ckeditor/ckeditor.config.js , following code is used to set 'class' and 'Id' to the body of ckeditor. You can use any value for that. (line-105).

  /**
   * CKEditor's editing area body ID & class.
   * See http://drupal.ckeditor.com/tricks
   * This setting can be used if CKEditor does not work well with your theme by default.
   */
  config.bodyClass = '';
  config.bodyId = '';

In my case I used :

  config.bodyClass = 'wild-cke';
  config.bodyId = 'wild-cke-body'; 

Then added following css to change the background color of body of ckeditor :

 #wild-cke-body {
  background: #FFFFFF;
}

Rgrds,

Deepika Chavan

pokadan’s picture

Status: Active » Closed (works as designed)

With the introduction and widespread usage of wysiwyg module you should also be able to fix this using post #1 of
http://drupal.org/node/789998

There are various fixes for it; none are really the concern of a theme.