Archived topic
smaller images on mobile device
3 replies · Started by Edward on November 27, 2020
Hi there,
I was wondering if it was possible to have smaller images on mobile devices within the categories section.
at the moment they are taking over the whole page when viewed on mobile and i'd like them smaller.
example page - https://goprotect.co/products/sealers/
thanks,
Ed Howey
Hi there,
Sorry - what images are you referring to?
I only see a slider on the linked page and no other images.
Let me know :)
https://goprotect.co/products/sealers/
this page has linked images on it. When you view it on mobile they are extremely large. I want to reduce the size.
Hi there,
you can use some CSS to restrict their size on mobile:
@media(max-width: 600px) {
.wc-block-grid__products .wc-block-grid__product-image img {
max-width: 250px;
}
}