Hi Paul,
thanks a lot for the quick reply. Much appreciated.
It could be also not a padding issue but different container width ".sppb-row-container"
Yes, indeed, this caused the problem. I've had to modify this value in the custom.css file:
/*---------------------------------------------------------------------------------------------------
SP Page Builder pages show too narrow left and right margins on screens wider than 1400px
when the Helix template is set to "Body Boxed Layout".
Setting value from @media (min-width: 1200px) which is more appropriate.
--------------------------------------------------------------------------------------------------*/
@media (min-width: 1400px) {
.sppb-row-container {
max-width: 1140px; /* SP Page Builder CSS value: 1320px */
}
}
It turned out that the override was not honoured on SP PB V5, for whatever reason, but is honoured on SP PB V4. Not sure why this is, but adding !important to the above custom.css snipped resolved the issue. (I know I should have had the !important in the first place, but I didn't recognize it was missing simply because everything worked as desired.)
So, thanks again for putting me on the right track.
Best regards
Peter