Hi MW Dev.
Without CSS not possible, but not so difficult with using CSS.
Section settings:
- Layout = Fluid
- Cols = 12+12
- Class name =
home-slider-section
Add Slideshow addon with only bg images to the first col.
Add addons you need to the second col.
Then CSS magic
.home-slider-section .sppb-row {
display: grid;
grid-template-columns: minmax(0, 1fr) 1320px minmax(0, 1fr);
}
/* For SPPB 3*/
.home-slider-section .sppb-col-md-12 {
grid-row: 1/-1;
grid-column: 1/-1;
}
.home-slider-section .sppb-col-md-12:last-child {
grid-column: 2/3;
}
/* For SPPB 5*/
.home-slider-section .sppb-row { /*correction of the wrong CSS when section is fluid*/
margin-right: 0;
margin-left: 0;
}
.home-slider-section .sppb-row-column:first-child {
padding: 0;
}
.home-slider-section .sppb-row-column {
grid-row: 1/-1;
grid-column: 1/-1;
}
.home-slider-section .sppb-row-column:last-child {
grid-column: 2/3;
}