How can I decrease the product grid size on Dawn?

Topic summary

A user seeks to reduce the width of their product grid on the Dawn theme to better align with their banner layout.

Solution Provided:

  • Navigate to Online Store > Themes > Actions > Edit code
  • Locate the CSS file (base.css, style.css, or theme.css)
  • Add specific CSS code targeting the collection component slider with a max-width of 90%

Outcome:

  • The initial attempt with base.css failed
  • Successfully resolved by applying the CSS code to template-collection.css instead
  • The user confirmed the solution worked perfectly and expressed appreciation
Summarized with AI on November 15. AI used: claude-sonnet-4-5-20250929.

Hi to everyone,

I would like to decrease the product grid’s size

Me website: https://runesofesu.store/

Now it looks lie this:

and i want it like this:

Please help xxx

1 Like

Hi @kissfromspace

Do you want to aling same with the banner above?

If it is try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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: 990px){
.collection--full-width slider-component:not(.slider-component-desktop) {
    padding: 0rem;
    max-width: 90%;
}
}

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

1 Like

Hi,

thank you a lot for your help!

ive tried it first with base.css but it did’t work, then ive tried it with template-collection.css and it worked perfectly!

appreciate it a lot!!!

1 Like