Hey, I have a few rows on one of my pages that I need the flex direction reversed for on mobile.
I have CSS for it, and it looks like it works when I do an inspect on Chrome, but when I got to the page on my phone it doesn’t work .
Can anybody help me with this?
The page is located at hotsocialclub.com/membership
Let me know if you need login credentials and I can give those to you as well.
I need the Being a Member and the Hourly Fee rows reversed on mobile so the icons show above the headlines.
Here is the CSS I am using (same CSS for two of the rows):
@media only screen and (max-width: 480px) {
.e38-21 > .x-row-inner {
flex-direction: column-reverse !important;
/* -webkit-flex-direction: column-reverse !important; */
}
}