Swap Divi columns on mobile and tablet devices

Nov 23, 2020 | Divi Tips

Add the CSS class “flip” to any Divi row settings in the Advanced tab. Add the following CSS code to the Divi theme options area or your child theme style.css file.

/* swap columns 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;
    }
}

Need help with this?
Hire me for a consultation and I’ll walk you thru the process.