我试图找出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%;">


我想修改高度,但是似乎找不到文件或任何相关文档。有人有信息吗?

最佳答案

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

考虑到编辑器已经失效,与Drupal的FCKeditor模块相同,我建议采用最简单的方法-更改FCKeditor模块

fckeditor.module中找到以下行:

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


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

关于html - 为FCKeditor修改iframe,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20887811/

10-10 21:43