Resizing the wordpress editor
Instead of resizing the editor, resize the internal representation inside the TinyMCE instance so the content itself never passes the line. This way the editor can eb any width and the content will never be wider than it’s intended to Start by adding the editor style in functions.php function my_theme_add_editor_styles() { add_editor_style( ‘custom-editor-style.css’ ); } … Read more