How can I increase the width of my product grid in the Debut theme?

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

@Ulysse1300

can you try better look at this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
.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 !