Hello,
I have this code:
@media (max-width: 767px) {
.x-section .x-container.swapcolumns {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
}
Which works on a single row with two columns in mobile view.
But it it has three columns, it swaps them but leaves them side by side.
It removes the stacking in mobile view and squishes everything onto a single row.
Anyway you know of to fix the code?
Thank you!
Jesse