Hello
How can I narrow the space between Collection description and product grids in Dawn theme?
Feels the gap’s to big and tried everything I can find online; Couldn’t resolve the issue.
A Shopify store owner using the Dawn theme sought help reducing excessive spacing between the collection description and product grid.
Multiple solutions were proposed:
Custom CSS approach: Several users suggested editing base.css or component-collection.css to adjust margin-bottom on the collection description or margin-top on the product grid, typically reducing values to 0.5rem-1rem.
Code editing method: Modifying sections/main-collection-product-grid.liquid and adding CSS rules targeting .collection__description or .collection-hero__description.
Theme customizer solution (successful): Adjusting the “Padding top” setting directly in the Product grid section through Shopify’s Customize interface, without touching code.
Resolution: The original poster confirmed the theme customizer approach worked best, marking it as the easiest and most effective solution. This method avoided manual code editing while achieving the desired spacing reduction.
Hello
How can I narrow the space between Collection description and product grids in Dawn theme?
Feels the gap’s to big and tried everything I can find online; Couldn’t resolve the issue.
Hey Kyle,
That space between the collection description and the product grid in the Dawn theme is usually controlled by top or bottom margin in the section styling — but it’s not always easy to spot.
Here’s a quick fix you can try:
Let me know if that works!
Hi @kyle6661 , what you need to do is adjust the CSS, specifically the margin of the “Collection description” or “Product grids” block.
You can use Chrome DevTools first to see how many pixels you need to adjust. Without a website link, we can’t check for you. (According to your image, a 10px change should be fine.)
You can refer to how to add custom CSS to a Shopify theme in many tutorials online to be able to do it properly. Or refer to How to add custom CSS to your theme from the Shopify Official guide.
That’s all. If this solved your problem, please like and mark Solved.
Hi @kyle6661 ,
To reduce the space between the collection description and product grids in the Dawn theme, please try these 2 simple steps:
Step 1: Go to Customize in your Shopify admin, then find and select the Product grid section.
Step 2: In the sidebar settings, look for the Padding top option. Reduce this value to decrease the gap, then save your changes and check your store.
Let me know if that helps or if you need further assistance!
Best,
Felix
Hi @kyle6661 ,
To reduce the space between the collection description and product grids in the Dawn theme, please try these 2 simple steps:
Step 1: Go to Customize in your Shopify admin, then find and select the Product grid section.
Step 2: In the sidebar settings, look for the Padding top option. Reduce this value to decrease the gap, then save your changes and check your store.
Let me know if that helps or if you need further assistance!
Best,
Felix
Please provide the Url and password of your website
you’ll need to apply a bit of custom CSS
follow these steps
Online Store → Themes → Dawn → Customize
click on edit code
find this Sections/collection-template.liquid
Look for the collection description and product grid layout. It usually looks something like this:
{{ collection.description }}
Right after this, there’s usually a grid or product-grid div.To control spacing, you’ll use CSS. Go to:
Assets/base.css (or sometimes component-collection.css or theme.css, depending on the version of Dawn)
Scroll to the bottom and add this custom CSS:.collection__description + .product-grid {
margin-top: 1rem; /* Reduce this value as needed */
If .collection__description class doesn’t exist, try this .collection-hero__description + .product-grid {
margin-top: 1rem;
Save the changes.
Hi @kyle6661 ,
To reduce the space between the collection description and product grids in the Dawn theme, please try these 2 simple steps:
Step 1: Go to Customize in your Shopify admin, then find and select the Product grid section.
Step 2: In the sidebar settings, look for the Padding top option. Reduce this value to decrease the gap (Please see the example image here: [link]), then save your changes and check your store.
Let me know if that helps or if you need further assistance!
Best,
Felix
Hello @kyle6661
Please follow the steps below after logging into the Shopify admin:
Output :
If you still need to reduce space. So please share your store URL and Password.
Please hit Like and Mark it as a Solution if you find our reply helpful.
Thanks Felix
It works! I tried everything I can find on internet but none of them works. You way is easier and good solution for me. Thanks!
Thats the best solution!
Hello @kyle6661
That’s great to hear—thanks for the update.