On the Our Community page I want the image to be above the text on mobile breakpoint. Currently the image for each module sits below the CTA.
You can add this to the bottom of your theme.css.liquid file in your Assets folder:
@media(max-width: 640px){
.FeatureText--withImage {
display: flex;
flex-direction: column;
}
.FeatureText__ContentWrapper {
order: 1;
}
}
Hi there, that hasn’t worked sorry