Archived topic
Remove White Space Between Column Elements
3 replies · Started by Edward on April 11, 2022
Greetings, in the customization section, I've set it to one container and removed vertical padding. I'm still seeing this undesired white space between two "columns" sections at the top of this page.
The desired outcome is green background immediately followed by gray background.
How can I adjust this?
Much appreciated.
Hi there,
the Columns Block is not controlled by the Customizer, its a core block that has some fixed settings like Bottom Margin.
Options:
a. you can add this CSS to remove the Margins whenever you set the Columns Block to Full Width:
.wp-block-columns.alignfull {
margin-bottom: 0em;
}
or
b. Use the GenerateBlocks plugin - its Container and Grid Blocks provides full stying control from within the editor.
Thank you. The plugin is very helpful.
Glad to be of help!