Hi,
Unfortunately, there isn’t any easy fix, as the slider can’t stretch vertically in that situation. But if you want, we can make it so the text on the right shows up below the slider, for iPad in portrait/vertical mode.
To do that:
1) Add an Extra Class to your Text Block element (edit it with the Page Builder, you will see an option for this). Let’s say you name it home-text-clear
Now do the same for the slider element, add an Extra class called homeslider-force-full
2) Go to the General theme options and add this in the Custom CSS box:
@media screen and (min-width: 760px) and (max-width: 768px) and (orientation: portrait) {
.home-text-clear {
clear: both;
margin-bottom: 40px;
width: 100%;
}
.homeslider-force-full {
width: 100% !important;
}
}
That should force the slider to be full width and the text to go underneath it, but only for iPads on vertical.
Regards,
————————————————————————————————————
Cosmin
Support Assistant