I am trying to adjust the order for which an image with text section appears on mobile. I have tried editing the css but am not having any luck.
It currently shows:
Heading
Subheading
Image
and I would like to change the order for this area to
Image
Heading
Subheading.
Please help if possible. I added the following code in the theme.css file at the end of the image with text section but am still having issues.
Thank you.
1 Like
Hi,
A very good question, please share your store URL so I can answer according to your theme
@KGBeastXxX
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! 
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hello,
Below is the site url, thank you!
https://waxonewax.com/
Thank you,
1 Like
You can add this
.feature-row–no-overlapping .homepage-featured-content-wrapper {
flex-direction: row-reverse;
}
@KGBeastXxX
great thanks for details please add this code
- Go to Online Store->Theme->Edit code
- Asset->/theme-index.min.css ->paste below code at the bottom of the file.
this code apply for after 5 - 6 second
@media only screen and (max-width: 767px) {
.homepage-featured-content-wrapper, .homepage-map-wrapper {display: flex;flex-wrap: wrap;}
.feature-row--no-overlapping .feature_row__image_wrapper {order: 2;}
}
1 Like
Thank you very much Ketan, it works great!
1 Like
@KGBeastXxX
it’s my pleasure to help us