Comments Alex started the conversationOctober 11, 2016 at 1:29amHello-I'm curious if there's a way to set rows up for right to left column collapse on mobile. So that :On Desktop :A BOn Mobile :BAI have played around with the column offset and can't get anything to work.Thank you!-AlexAlex repliedOctober 11, 2016 at 6:59pmGot it taken care of by entering the columns in the reverse order (as they should appear on mobile) then adding a css class to the columns that should be pushed to the right on desktop (right-to-left) the and then using this css : @media (min-width: 768px) {.right-to-left { float:right!important;}} Sign in to reply ...
Hello-
I'm curious if there's a way to set rows up for right to left column collapse on mobile. So that :
On Desktop :
A B
On Mobile :
B
A
I have played around with the column offset and can't get anything to work.
Thank you!
-Alex
Got it taken care of by entering the columns in the reverse order (as they should appear on mobile) then adding a css class to the columns that should be pushed to the right on desktop (right-to-left) the and then using this css :
@media (min-width: 768px) {
.right-to-left {
float:right!important;
}
}