fckeditor.moduleをインストールするとtextareaの下にでかい空白が出現するようになると思うが、それを解決するのはこんな感じ
modules/fckeditor/fckeditor.moduleを編集
/**
 * Implementation of hook_elements
 */
function fckeditor_elements() {
  $type['textarea'] = array('#suffix' => "<script>document.getElementById('edit-body').style.display = 'none';</script>" . fckeditor_create_editor('body')
                           );
  return $type;
}
というところをまるごと、
/**
 * Implementation of hook_form_alter
 */
function fckeditor_form_alter($form_id, &$form) {
  foreach ($form as $k => $e) if ( is_array($form[$k]) ){
    if ($e['#type'] == 'textarea' && $k == 'body'){
      $form[$k]['#suffix'] = fckeditor_create_editor($k) . "<script>document.getElementById('edit-{$k}').style.display = 'none';</script>";
    }
    fckeditor_form_alter('', $form[$k]);
  }
}
に置き換える。ちなみに4.7用なので注意