Support

Account

Home Forums Gutenberg Reduce Gutenberg Content section height Reply To: Reduce Gutenberg Content section height

  • I’m facing the same problem. The layout of Gutenberg editor is not optimal when dealing with custom fields. Haven’t found a way to customize Gutenberg as I want.

    The solution I settled for in the meantime is to change the order of the metaboxes.

    Be aware though that this places the metaboxes BEFORE the title and also that your site may have more custom meta boxes than mine (Only using ACF and Yoast SEO). The metaboxes are collapsable which helps a bit…

    Here’s the css for this optional solution 🙂

    .edit-post-layout__content .edit-post-visual-editor {
        order: 2 !important;
    }
    
    .edit-post-layout__content .edit-post-layout__metaboxes {
        order: 1 !important;
    }