Home Page › Forums › Porto – AI Powered WordPress Website & Shop Builder › Stretch Row Alignment Broken on New Pages in Porto 7.6.1 (WPBakery) › Reply To: Stretch Row Alignment Broken on New Pages in Porto 7.6.1 (WPBakery)
The WPBakery folks replied: “Hello, In the 8.5 release, WPBakery introduced updates to row stretching to enhance performance. It appears that the theme may be modifying the row output, which could be affected by this update.”
I have found when I modify your CSS as follows, I get the stretch row by CSS functionality to return to normal – in case this is a fix you want to apply:
.vc_row.porto_stretch_css {
position: relative;
width: calc(100vw – var(–porto-scroll-w, 0px));
width: 100vw !important;
position: relative !important;
left: 50% !important;
transform: translateX(-50%) !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box !important;
}
It would be nice to have this remedied within the theme, as without the fix, it means I cannot create a new page anymore with the stretch by CSS quality applied – and when using the stretch by JS parameter, while the rows do stretch, it causes pages to jump around a lot when loading.
Thanks!