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]