修改FCKeditor的iframe

时间:2014-01-02 17:01:55

标签: html css fckeditor

我正在试图弄清楚FCKeditor的WYSIWIG编辑器的样式是什么文件。

这是一个WYSIWIG iframe示例:

<iframe id="edit-field-location-0-value___Frame" height="100%" frameborder="0" width="100%" scrolling="no" src="/sites/all/modules/fckeditor/fckeditor/editor/fckeditor.html?InstanceName=edit-field-location-0-value&Toolbar=Default" style="margin: 0px; padding: 0px; border: 0px none; background-color: transparent; background-image: none; width: 100%; height: 100%;">

我想修改高度,但我似乎无法找到该文件或任何文档。有没有人有任何信息?

1 个答案:

答案 0 :(得分:0)

有人还在使用旧模块/编辑器(为什么?)o.O: - )

考虑到编辑器已经死了,与Drupal的FCKeditor模块一样,我建议采取最简单的方法 - 改变FCKeditor模块

fckeditor.module中找到以下行:

// sensible default for small toolbars
$height = intval($element['#rows']) * 14 + 140;

并尝试将height设置为任何其他值。我没有安装这个模块,但这是我的第一个猜测。