If you are using a background image, choose pseudo element
as the Selector.
Then add an additional CSS class to the container block, eg. bg-container
, add this CSS:
.bg-container.gb-container {
overflow: visible;
}
.bg-container.gb-container:before {
top: -200px;
}
https://wordpress.com/support/wordpress-editor/adding-additional-css-classes-to-blocks/
You can play around with top
value and it’s better to add a top margin for the bg-container
, so that the bg image won’t overlap the content above thebg-contaienr
.