Tagged: grid row
Hello. If you look at this website in iPad (portrait), you’ll see that the images (1st Grid Row Cell) are stacked on top of the text (2nd Grid Row Cell). Is there a way to define which Grid Row cell gets “stacked” on top? I’d like these flip-flopped in some situations, such as this one.
Thank you,
Ryan
Hey Ryan,
I haven’t tried it myself but you could try to set the containers to display flex and then set the order for them individually:
.containers {
display: flex;
display: -ms-flex;
flex-direction:column;
}
.individual-container {
order:1;
}
}
Best regards,
Rikard
Thanks. I went with the new options to hide/show on mobile, within Enfold.