Archived topic
Erase Space between Page Builder Containers
5 replies · Started by Thomas on January 7, 2021
Hello, I want to erase the space between two Site Origin PageBuilder Textwidgets.
Here is the source code:
Element:
siteorigin-widget-tinymce textwidget
<div class="siteorigin-widget-tinymce textwidget"><p><strong>Zum 1. Januar 2021 haben die Kirchengemeinden Biberach-Kirchhausen und Fürfeld zur <span style="color: #ff0000;">Evangelischen Kirchengemeinde Biberach-Kirchhausen-Fürfeld</span> fusioniert.</strong></p><p>Hier finden Sie Informationen über uns und unsere Gruppen, Termine und Neuigkeiten, Angebote und Informationen. Natürlich können Sie uns gerne auch persönlich sprechen <a title="Kontakt" href="https://ekbkf.de/kontakt/">(<strong>Anschriften und Telefonnummern</strong>).</a> Hier geht es zu den <a title="Termine" href="https://ekbkf.de/termine/"><strong>Terminen in unserer Kirchengemeinde</strong></a>.</p></div>
Thank you for any help!
Tom
Hi,
Can you link us to the page in question so we could check? We need to see the CSS being loaded on the site to know what's causing the issue.
Also, SiteOrigin Widgets Bundle is a third party plugin which is out of our scope. It's best to ask the plugin developer about issues that you may come across in using their products as they know more about it. :)
I provided the url in the private info. Thanks!
I've checked your site.
As you can see in this inspection: https://share.getcloudapp.com/2Nu0oeEl
The space between the 2 grid cell is controlled by justify-content: space-between; placed on the .panel-grid.panel-has-style>.panel-row-style, .panel-grid.panel-no-style selector.
While we can override this with this CSS:
.panel-grid.panel-has-style>.panel-row-style, .panel-grid.panel-no-style {
-ms-justify-content: normal;
justify-content: normal;
}
I'm not sure if this is the best practice when dealing with layouts made within SiteOrigin's pagebuilder. That said, its best to refer to SiteOrigin's documentation or support forum.
You can ask for SiteOrigin Widgets Bundle plugin's developer/support if they have something that controls justify-content property for their grid widgets.
Thanks very much for your good support!
Tom
Thanks very much for your good support!
No problem. Glad to be of any help. :)