On desktop view its fine but on mobile, the picture moves around when trying to scroll. How do I fix this?
Also how can I make the image itself smaller for both desktop view and mobile view?
Website URL is: lumokitty.com
A user is experiencing product image display issues on their Shopify store (lumokitty.com).
Problems identified:
Solution provided:
Add custom CSS code to the theme’s Custom CSS section (Online Store > Themes > Customize):
@media (max-width: 749px) {
.slider__slide { overflow: hidden; }
}
This CSS targets mobile devices (screens under 749px width) and prevents image overflow in slider elements. The image resizing question remains unaddressed.
On desktop view its fine but on mobile, the picture moves around when trying to scroll. How do I fix this?
Also how can I make the image itself smaller for both desktop view and mobile view?
Website URL is: lumokitty.com
You can add this code to Custom CSS of that section on Online Store > Themes > Customize
@media (max-width: 749px) {
.slider__slide { overflow: hidden; }
}