Hi @lowlandet,
Thank you for reaching out to us. To swap columns on mobile screens, simply assign a class swapcolumns
to the sections where you need to swap it’s columns and then add the following code in the Theme Options > CSS:
@media screen and (max-width: 979px) {
.x-section.swapcolumns .x-row .x-row-inner{
flex-flow: wrap-reverse
}
}
To learn more about Flexbox please see https://css-tricks.com/snippets/css/a-guide-to-flexbox/ and here are some related links for further reading, this could help you in finding and implementing some CSS fixes:
Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!