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

Adjust slideshow image size in mobile

Solved

Adjust slideshow image size in mobile

Jim
Explorer
88 2 26

1751859603635_看图王.jpg

1751859615060_看图王.jpg

my web:www.bmcarcover.com

 

I want the size of the slide picture square for mobile device, not rectangle

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

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.

View solution in original post

Replies 3 (3)

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

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.

Jim
Explorer
88 2 26

oh!thank you

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

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.