Closed (fixed)
Project:
FCKeditor - WYSIWYG HTML editor
Version:
5.x-2.1-beta2
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
2 Mar 2008 at 23:16 UTC
Updated:
25 Jun 2008 at 09:16 UTC
Comments
Comment #1
wwalc commentedHi,
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.Comment #2
Jorrit commented