Hi,
I would like to know if it was possible to increase the width of my product grid, so that it takes up the entire width on all product pages and not only on my home page ?
Thanks.
My website : https://relentless-clothingz.myshopify.com
Hi,
I would like to know if it was possible to increase the width of my product grid, so that it takes up the entire width on all product pages and not only on my home page ?
Thanks.
My website : https://relentless-clothingz.myshopify.com
can you try better look at this code
.grid-view-item__image-hover {max-width: 100% !important;}
.grid-view-item__image {max-width: 100% !important;max-height: 100% !important;}
Thanks for the answer. I paste the code and it didn’t change anything …
Hi @Ulysse1300 ,
Go to Assets > theme.css and paste this at the bottom of the file:
#Collection .grid-view-item__image-wrapper {
max-width: 345px !important;
}
#Collection .grid-view-item__image-wrapper img{
max-width: 345px !important;
max-height: 345px !important;
}
Hope it helps!
Hi @Ulysse1300 ,
Go to Assets > theme.css and paste this at the bottom of the file:
#Collection {
max-width: 100% !important;
}
Thanks a lot, it’s perfect !