Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi, I want to make image second on mobile for just one "Image With Text" component. I dont want to change order for all"Image With Text" components. Can anyone help with this?
Here is the preview link:
https://t02dwt1nqil3k4c3-82635784493.shopifypreview.com
Section is bellow image withe the dog on the snow:
Solved! Go to the solution
This is an accepted solution.
Hello @Sasha84
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width:749px){
.image-with-text.column-spacing--medium {
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
}
}
</style>
Please drop your page URL and let me know Image with text section you want to change order
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hey! Am wondering if you can help me with the same issue?
www.nouvelleglass.com
The images currently come before text on mobile.
I would like to swap this please, so text comes before images on mobile.
Hi @Sasha84
Please add this code to Custom CSS of that section in your Online Store > Themes > Customize
@media (max-width: 768px) {
.feature-row__text { order: 0 !important; padding-bottom: 20px !important; }
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Amazing Thank You so much!!
You are very welcome!
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hello @Sasha84
Can you share page URL?
Hi, here is the preview link:
https://t02dwt1nqil3k4c3-82635784493.shopifypreview.com
Section is bellow image withe the dog on the snow:
Go to Online store > Themes > Edit code > open theme.liquid file, add this code under <head> element
<style>
@media (max-width: 749px) {
#shopify-section-template--21063472283949__image_with_text_8PKNmB .image-with-text--image {
order: 2;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Hello @Sasha84
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width:749px){
.image-with-text.column-spacing--medium {
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
}
}
</style>
Thx a lot!!! It worked perfectly!:)