Shopify themes, liquid, logos, and UX
Hello everyone,
Would any of you have any advice on how to make it so that I can choose different image sizes separately for the mobile version and separately for the desktop version?
Not only is it unsightly, but the mobile version shows me a huge speed bump because of it.
I found a lot of tutorials but none of them worked so far 😞
Thank you very much in advance!
Eli
Hi @EliskaM
You can create separate image banner sections and then
@media (max-width: 749px) {
.banner {
display: none !important;
}
}
@media (min-width: 768px) {
.banner {
display: none;
}
}
- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- 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 Dan,
thank you very much for your help. I would like to change it at the main slider on home page. Could you please advise me where exactly I can add that code?
My store url: https://krasopiska.cz
Hi @EliskaM
Please use this code
Hide slideshow on the mobile
@media (max-width: 749px) {
.slideshow {
display: none !important;
}
}
Hide slideshow on the desktop
@media (min-width: 768px) {
.slideshow {
display: none;
}
}
- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- 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 works, but the slideshow button appears x2 times now because of the second slideshow section, how do we fix that?
Please update the code.
Desktop
@media (max-width: 749px) {
slideshow-component {
display: none !important;
}
}
Mobile
@media (min-width: 750px) {
slideshow-component {
display: none !important;
}
}
- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- 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.
@EliskaM Hope you are doing well.
For that, you have to update some code in your theme. you have to give 2 different options for mobile and desktop and hide/show it accordingly.
It requires some custom code changes to achieve.
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025