How can I modify the home page collection title size and spacing?

Topic summary

A user wants to reduce the collection title font size to 15px on their homepage and decrease the spacing between the title and products below it.

Responses provided:

  • One commenter requested additional information about the theme being used and the page URL to provide more specific help.
  • Another user shared CSS code targeting specific Shopify section IDs to:
    • Set the title font size to 15px
    • Adjust the bottom margin of the title wrapper to 0px

Status: The discussion appears to have received a potential technical solution via custom CSS, though it’s unclear if the original poster confirmed whether the code resolved their issue or if they provided the requested theme details.

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

Hi, I would like to change the home page collection title to 15px. I would like to reduce space between the collection title and collection products bellow. Thanks

Hi, @danielcorrea

what theme you are using and also send me page url

Hi @danielcorrea

Please use this code

#shopify-section-template--19984276324700__31a0a3fc-5d8e-4a7f-a002-6a925b8943f1 h2.title {
font-size: 15px !important;
}
#shopify-section-template--19984276324700__31a0a3fc-5d8e-4a7f-a002-6a925b8943f1 .collection__title.title-wrapper { margin-bottom: 0px; }
1 Like