Site logo

Archived topic

smaller images on mobile device

3 replies · Started by Edward on November 27, 2020

Viewing posts 1–4 of 4

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 :)

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;
    }
}
This archived topic is closed to new replies.