Чтобы это исправить создадим файл: sites/all/libraries/ckeditor_custom/ckeditor.config.local.js с содержимым:
CKEDITOR.editorConfig = function(config) {
// Make CKEditor's edit area as high as the textarea would be.
config.height = this.element.$.rows * 20 + 'px';
}
Затем, при условии что CKEditor установлен в: sites/all/libraries/ckeditor/
, в дополнительных настройках профиля добавим:
config.customConfig = '../ckeditor_custom/ckeditor.config.local.js';
Ссылки на источники