Help with collection display!

Hello! I need help (probably with coding) to fix how this collection is displayed, each item is normal size, except it keeps making the last item on the page super large and I want all of the products to be uniform size. Here is the link to the collection on my store. Thank you so much in advance!!

https://shopgoldenhour.online/collections/photography

1 Like

Hi @shopgoldenhour

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 750px) {
    .collection .grid__item {
        max-width: calc(25% - var(--grid-desktop-horizontal-spacing));
    }
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you so much!!