Adjust slideshow image size in mobile

my web:www.bmcarcover.com

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

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; }
}

oh!thank you

1 Like

Happy I could help!