Movable Type 5のブログ記事/ウェブページにある、本文編集エリアの縦幅を拡張する方法です。 変更前 変更後 編集エリアのスタイルは、mt-static/css/editor/editor.cssの以下のセレクタで設定しています。 .edit-entry #editor-content-enclosure { height: 350px; } .edit-entry #editor-content-textarea { height: 355px; border: 0 ! important; } 編集エリアの縦幅を550pxに変更したい場合、以下のように修正します。 .edit-entry #editor-content-enclosure { height:550px; } .edit-entry #editor-content-textarea { height:550px