# Reverse column order on tablet/mobile

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;
    }
} 

``` 

