Switch Grid Column - Left to Right

Hello all.
I have a grid layout that I’m trying to flip with CSS (in anticipation of using it for a CMS Collection).

I’m using the following CSS

<style>
.div-block-33:nth-child(even){
  direction: rtl;
}
</style>

Here’s how it looks in Designer:

Here is how I want it to look - just the columns switched, I want my text to still be left aligned:

But this is what’s happening - in the second row, the text is changing to right-align:

How can I only change the column layout, without affecting the content alignment inside?


Here is my site Live Preview: [LINK]

@antonyx6 use the below code instead of rtl it will solve your problem

.div-block-33:nth-child(even) .div-block-31
{
order:1;
}

Amazing. Thank you so much.

1 Like