Hi there-
We’d like to speak to support / have them look at our code to see what is going on here. List of issues below:
1) On multiple pages, we’re having issues with column breakpoints when using the visual page builder. We have properly setup columns and added content. It’s worked fine and then all of a sudden, the last column goes to a new row. We have not changed anything on our end to cause this.
2) On a few pages, we are using a single column and centering items, but they remain off center to the right. We need help here as well.
Please let us know any private content we need to share to get these addressed.
Thanks in advance.
Hey ottoc,
Could you post links to where we can see the problem please?
Best regards,
Rikard
Good morning-
Thank you for your quick response. See private links below…
Hi,
Thank you for the update.
1.) The issues is caused by the reboot.scss file. It overrides the default box-sizing property of the columns. You can add this code in the Quick CSS field to fix it.
*, ::after, ::before {
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
}
2.) The boxes look centered. Is this fixed?
Best regards,
Ismael
Thank you! that CSS worked like a charm!