Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Created November 14, 2022 20:23
Show Gist options
  • Save Asikur22/442579869a8d16cac6af15589ff190d1 to your computer and use it in GitHub Desktop.
Save Asikur22/442579869a8d16cac6af15589ff190d1 to your computer and use it in GitHub Desktop.
Add max width to Gutenberg Editor
add_action( 'admin_head', function () {
global $pagenow;
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ) ) ) {
return;
}
?>
<style>
.edit-post-visual-editor .wp-block.editor-post-title,
.edit-post-visual-editor .wp-block {
max-width: calc(100% - 100px);
margin-left: auto;
margin-right: auto;
}
.wp-block.block-editor-block-list__block {
padding: 0;
}
</style>
<?php
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment