In the ride theme, “image first” is the default mobile alignment for image with text section. On mobile, this places the image on top, and therefore has pictures back to back. There is no option to change it to image second for the mobile alignment so the text is above the image. I could not find it in the code. Help? Thanks!
Hi @gperkins7 ,
Go to Assets > base.css and paste this at the bottom of the file:
@media screen and (max-width: 749px){
.image-with-text__grid--reverse {
flex-direction: column-reverse;
}
}
Hope it helps!