MariaJackson1
7/6/2017 - 7:28 PM

Swap Columns (Colin Falcon)

Give the Row that you want to flip the columns on the class 'flip' then use this css:

/***[Switch column order on mobile]***/
@media only screen and (max-width: 980px) {
.flip { 
display: -webkit-flex;
-webkit-flex-direction: column-reverse;
display: flex;
flex-direction: column-reverse !important;}
}