✔ Backend - Make full width
Completed by Kyle S.
- Assigned to
-
Kyle S.
- Notes
-
Add this to child or parent theme. I think either way works.
functions.php:
add_theme_support( 'editor-styles');
function transfiguration_theme_add_editor_styles() {
add_editor_style( 'style-editor-transfiguration.css' );
}
add_action( 'admin_init', 'transfiguration_theme_add_editor_styles' );
style-editor-transfiguration.css (new file somewhere in the same theme folder as the functions.php file)
.wp-block {
width: 100% !important;
max-width: 100%;
}
Comments & Events
I'll start adding this to my sites.
Kyle Sullivan completed this to-do.