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
my web:www.bmcarcover.com
I want the size of the slide picture square for mobile device, not rectangle
Solved! Go to the solution
This is an accepted solution.
You can add another slideshow section for mobile, so you can use other images for mobile, then add CSS code to each section to hide desktop section on mobile and mobile section on desktop.
Add this code to custom CSS of mobile section
@media (min-width: 750px) {
slideshow-component { display: none; }
}
And this code is for Custom CSS of desktop section
@media (max-width: 749px) {
slideshow-component { display: none; }
}
- 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.
You can add another slideshow section for mobile, so you can use other images for mobile, then add CSS code to each section to hide desktop section on mobile and mobile section on desktop.
Add this code to custom CSS of mobile section
@media (min-width: 750px) {
slideshow-component { display: none; }
}
And this code is for Custom CSS of desktop section
@media (max-width: 749px) {
slideshow-component { display: none; }
}
- 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.
oh!thank you
Happy I could help!
- 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.