The width parameter in the advanced settings is not taken into account making the textarea offwidth in IE7. Having a look at the code of the fckeditor.module (fckeditor-5.x-1.1.tar.gz) it appears that the width parameter was not set...

line 240 should be :
var ".$js_id." = new FCKeditor( '".$element['#id']."' );
".$js_id.".BasePath = '".$module_full_path."/fckeditor/';
".$js_id.".Config['CustomConfigurationsPath'] = '".$module_full_path."/fckeditor.config.js';
".$js_id.".ToolbarSet = '".$toolbar."';
".$js_id.".Height = '".$height."';
".$js_id.".Width = '".$width."';\n";

instead of :
var ".$js_id." = new FCKeditor( '".$element['#id']."' );
".$js_id.".BasePath = '".$module_full_path."/fckeditor/';
".$js_id.".Config['CustomConfigurationsPath'] = '".$module_full_path."/fckeditor.config.js';
".$js_id.".ToolbarSet = '".$toolbar."';
".$js_id.".Height = '".$height."';\n";

Works fine with me. Hope this helps.
Cheerio

Comments

ontwerpwerk’s picture

Version: 5.x-1.1 » 5.x-1.x-dev
Status: Reviewed & tested by the community » Fixed

thanx for the heads up

fixed in cvs, should be in the 5.x-.1.x-dev version sooon

Anonymous’s picture

Status: Fixed » Closed (fixed)