Once you arrange blocks within the block editor (Gutenberg), you sometimes get choices on tips on how to align them (i.e. none, large, full). Or, in case your theme would not have them, you need to use the operate add_theme_support ();
to incorporate them. That is actually useful as a result of then I can model them with CSS like one thing under:
.alignfull {
width: 100vw !vital;
max-width: 100vw !vital;
place: relative;
left: 50% !vital;
proper: 50% !vital;
margin-left: -50vw !vital;
margin-right: -50vw !vital;
margin-top: 0;
margin-bottom: 0;
}
Is there a hook I may embody in my theme’s capabilities.php
so as to add one other alignment possibility? A customized one I may model with my CSS?
Do I’ve to hook into every block to perform this or can or not it’s one thing the place if alignment is supported, the choice might be included?
Ideally, I might like to have an possibility for my Column block to have a smaller width alignment possibility for content material editors to select from.
I discovered a difficulty raised about it from Dec 2020 with not a lot luck. Including a CSS class beneath “Superior” will not be superb when you find yourself attempting to maintain bumpers on for the content material editor.