@media (min-width: 768px) {
.x-section .x-container.swapcolumns {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
I found the code above, and it works on this page.
But it doesn’t work on blog posts.
Any idea why?
When i apply it to a row in a blog post it just automatically swaps it from the start regardless of device.