Skip to main content

Command Palette

Search for a command to run...

Reverse column order on tablet/mobile

Updated
1 min readView as Markdown

Insert the class "reverse" in the class css field of the row and the code below within the custom css of Divi Theme:

@media screen and ( max-width: 980px ) {
    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}
18 views