Archived topic
Gutenberg editor pain points
5 replies · Started by John on December 12, 2018
I am struggling with the Gutenberg editor update. The editor width is much smaller. How can I increase the width of the editor? I tried full screen mode but the width remains the same.
Hi there,
the Editor reflects the same size as the Container width of your live site. Is that what you are seeing?
yes, but I want to create my content using a wider container width than what my site has. Is that possible?
There's a filter for that.
For example:
add_filter( 'generate_block_editor_content_width', function() {
return 1200;
} );
1200 being the width in pixels.
Let me know if you need more info :)
Thanks Tom!
You're welcome :)