Hi, I am using the Sky theme which is fixed and has a background that goes from white to dark blue. For some reason, the FCKeditor text fields do the same thing, which makes the text difficult to read while you edit as you scroll down. Any way to change this? Thanks so much.

Comments

wwalc’s picture

Category: bug » support

Hi,

This is quite common issue, I'll probably add it to the Troubleshooting section.
Take a look here: http://drupal.org/node/204242.

The other trick that you can use is similar to that above:
Find an ID of an element that holds the most "important" CSS settings for you, in this case it is:

#wrapper {
  background:#fff;
  height:auto !important;
  min-height:100%;
  height:100%;
  width:960px;
  margin:0 auto -5em;
}

You need to assign the ID of this element to the FCKeditor (BodyId) and optionally adjust other CSS settings (EditorAreaStyles):
open modules/fckeditor/fckeditor.config.js and add the following code:

FCKConfig.BodyId = "wrapper";
FCKConfig.EditorAreaStyles = "#wrapper{width:100%}";

Note that I have change the size of the #wrapper, because it is set to width:960px; in CSS file.

Jorrit’s picture

Status: Active » Closed (fixed)