• So we had everything lined up and working with WP 4.9 and Gut. 4.1.1, and then here comes WP 5.0 beta1…

    Anyway the code I had previously successfully resizing the editor does not work anymore. Can anyone PLEASE provide us with the code how to resize the editor in WP 5.0 beta1?

    P.S. I’ll deal with the other major issues, like my theme’s Meta Boxes no longer show up, and rendering ACF totally useless later on, one battle at a time I guess !!!

    The WP 5.0 beta1 experience is totally different from WP 4.9/Gut. plugin 4.1.1.

    Thanks,
    Nick.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Nick,

    If you are using the following code make sure to add !important after the max-width value. It worked for me.

    
    function wp436784723890_expand_gutenberg_edit_area() {
    	?>
    	<style type="text/css">
        .edit-post-visual-editor .editor-post-title__block,
    		.edit-post-visual-editor .editor-block-list__block {
    			max-width: 1080px !important;
    		}
    	</style>
    	<?php
    }
    add_action( 'admin_head', 'wp436784723890_expand_gutenberg_edit_area' );
    
    • This reply was modified 5 years, 6 months ago by Marius L. J.. Reason: Added code tags for readability
    Thread Starter nick6352683

    (@nick6352683)

    @irishetcher: That did the trick, THANK YOU !

    Nick.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can we resize the editor in WP 5.0 beta1’ is closed to new replies.