Sorry to hijack this topic (too) but I have spent 10 hours + trying to fix things up too.
It seems like the latest update has introduced some bugs to the page builder content elements.
For example you set paddings with the slider for a “Row” and it seems like that there are two containers that settings (such as override classes pr0, mb0, etc) are applied too.
For example I set the vertical padding for a row to 70px:
The “.spb-row-container” inherits the override class “pb0” but then the “.spb_content_element” still has 70px top and bottom paddings. The same happens with most elements.
Another “bug”:
The row class always has a 15px padding and had to resort to this to get rid of that
.row {
padding-left: 0!important;
}
Yet another one:
The toggles – accordions + signs have an “atelier” font assigned to them.
Had to resort to:
.spb-row-expand-text span::before {
content: “+”;
font-family: “SSGizmo”;
transform: translate3d(0px, 5px, 0px) rotate(0deg);
}
The icon-boxes needed fixes too and the Icon Reveal buttons (large) are messed up as well (additional padding breaks them).
I have noticed the a lot of the intruding styling comes from page-builder.css file.
Please have a look at this since correcting a 100+ pages site ain’t easy.