How do I reorder images for left and right aligned images on mobile?

Hi there,

My images don’t show on mobile for right and left aligned images. I also want the images to populate above the text on mobile. Can someone please help?

https://maryandmason.co.nz/?_ab=0&_fd=0&_sc=1&key=bf7a1d0e12a40b594d57caf77237499fd91a7c0b10d1603a08cfc3b98e0e2e88

Navigate to OUR PEOPLE → OUR COMMUNITY for an example of where this happens on mobile.

Thanks,

Dean

Can you share the screenshot please?

These have images at wider widths but they don’t show up on mobile. I also want to images to be above the text on mobile rather than below.

Here’s a video of it

@media only screen and(max-width:750px){
.FeatureText.FeatureText--withImage.FeatureText--imageRight {
    display: block;
}
}

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

Hi there,

That doesn’t work for me. Can you please check again?

Thanks

Oh it’s working now thank you! Do you also know how to show the image at the top above the text rather than below?

@media only screen and(max-width:640px){
.FeatureText.FeatureText--withImage.FeatureText--imageRight {
    flex-direction: column-reverse;
    display: flex;
}

.FeatureText.FeatureText--withImage.FeatureText--imageLeft {
    display: flex !important;
    flex-direction: column !important;
}
}

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

note : if you have already this media 640px then css in it. no need to add extra media!