How to reduce space in "featured collection" between product photos and carousel number for Dawn?

Topic summary

A user seeks to reduce the vertical spacing between product photos and carousel navigation numbers in the Dawn theme’s “featured collection” section (version 11.0.0).

Solution Provided:

For desktop:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following code at the bottom:
.card__information {
    padding-bottom: 0px !important;
}
.slider--desktop {
    margin-bottom: 0px !important;
}

For mobile:

  • Use the same process and add this media query:
@media only screen and (max-width: 989px){
    section#shopify-section-template--[ID] .card__content {
        white-space: nowrap;
    }
}

Status: The solution was confirmed working with visual results shared. The user requested and received both desktop and mobile implementations.

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

Hi! How do I reduce the space in “featured collection” between product photos and carousel number for the Dawn theme ver 11.0.0? See photo below for clarification.

URL is topspot.cards

1 Like

Hi @topspotcards

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:
.card__information {
    padding-bottom: 0px !important;
}
.slider--desktop {
    margin-bottom: 0px !important;
}

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

1 Like

Thank you so much! Is there away to do this for mobile as well?

1 Like

Yes, Check this one.

Same Istruction.

@media only screen and (max-width: 989px){
section#shopify-section-template--16018551046282__0e26de2a-7d3d-471d-82c3-80f0ab1eb8b3 .card__content {
    white-space: nowrap;
}
}

And Save.

Result:

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