How to switch columns on mobile view?

My layout goes
Row 1:
Col 1, Col 2
Row 2:
Col 1, Col 2

On a mobile view only, how can I switch Row 2 so it’s Col 2, Col 1.

I’ve tried giving the row a class and adding this CSS but it didn’t work:

@media (max-width: 767px){
.row_reverse{
display: flex;
flex-wrap: wrap;
flex-direction: column-reverse;
}
}

Hello @cfckiley,

Thanks for writing in! You do not need to have a custom CSS for this one. Please check out this Youtube video tutorial instead:

Please let us know if this works out for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.