Dear Friends,
I need to make the images slideshow responsive to the image size on desktop and mobile. I hope this is the best solution to overcome the image size issue. I followed the given image size 1920x1080 and tried others, aspect ratio 16:9, but still the issue exists.
Url: https://ba0ven-x1.myshopify.com/
Looking forward for your feedback on this matter,
Thanks and best regards
1 Like
Hello, In mobile view your slider image take the lots of space. Do you want to reduce that and made the slider like 400px height.
If you give screen shot of the area of the responsiveness you pointing. we will try to help you.
In different size in my testing the image looks good.
Looking forward from you.
Please have a look on the website, to be frank I don’t know what’s the
right one. Appreciate your help. Thank you
Hi @Alliance
You can create 2 different image slideshow sections, one for mobile and another one for desktop, then add custom CSS code to hide desktop slides on mobile and vice versa.
Add this code to Custom CSS of the desktop version
@media (max-width: 749px) {
.carousel { display: none; }
}
This code to the mobile slideshow version
@media (min-width: 750px) {
.carousel { display: none; }
}
Hi,
On mobile portrait view: not functioning, On mobile landscape: functioning
On desctop: No change.
Thanks and best regards
1 Like