How to trim down the vertical spacing under the product title in grid view, debut theme

Topic summary

A user seeks to reduce vertical spacing below product titles in grid view on the Debut theme, wanting it to match the spacing of information listed underneath. The issue affects both collection pages and search results pages.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the desired theme
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS at the bottom:
.product-card .grid-view-item__title.h4 {
    min-height: auto;
}
.grid__item br {
    display: none;
}

Outcome:
The solution was confirmed to work successfully by the original poster.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

I’m using debut theme and I am looking to trim down the space under my product titles so that it is the same as the information listed under it. Please see the following image on the page here for a sample page: https://chelseasbeads.com/collections/carnelian

also need this change to be applied to search pages which are formatted in the same way currently, like for example this search here:

https://chelseasbeads.com/search?type=product&q=agate

1 Like

Hi @Matt_Dubinsky

Check 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:

.grid__item br {
    display: none;
}
.product-card .h4.grid-view-item__title {
    min-height: auto;
}

And save.

Result:

1 Like

thank you for the help, solution worked!