Hi @RocktheHouse1876,
There is currently no out of the box option available for the columns to switch their order on mobile. However, it is possible by adding a bit of customization.
Please do the following:
#1. Assign a class name to the row that contains the two columns. In this case, let’s assume that the class name you added is switch-on-mobile
.
#2. Add this code in X > Theme Options > CSS:
@media (max-width: 767px) {
.switch-on-mobile {
display: flex;
flex-direction: column;
}
.switch-on-mobile .x-column:nth-child(1) {
order: 2;
}
.switch-on-mobile .x-column:nth-child(2) {
order: 1;
}
}
Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.
Hope this helps.