How can I decrease footer spacing without theme.css?

Topic summary

A user seeks to reduce footer spacing in their Shopify store but cannot locate the theme.css file.

Problem: Excessive spacing between footer sections needs adjustment without direct access to theme.css.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file in the Assets folder (base.css, style.css, or theme.css)
  • Add custom CSS targeting footer elements:
    • .footer-block--newsletter with margin-top: 2rem !important
    • .footer__content-top with padding-bottom: 2rem !important
    • .animate--slide-in with padding-top: 0px !important

Outcome: The CSS solution successfully resolved the spacing issue. The user confirmed it worked after implementation.

Note: Spacing values can be adjusted if the reduction is too aggressive.

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

i want to reduce the spacing between the footer ,How can i do that
i dont have find theme.css in the sections

1 Like

Hello @Flowbliss

please could you provide you the store URL so that we can check and provide you the solution.

Please provide link to your store so that i can look into it

Hi @Flowbliss

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

i havent published the site

1 Like

Its password protected. Its okay if not yet publish. We just need to check your store so we can give a solution. Thanks!

where i can share the password

leibay

leibay

Thanks for the info, 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:
.footer__content-bottom.scroll-trigger.animate--slide-in {
    padding-top: 0px !important;
}
.footer__content-top {
    padding-bottom: 2rem !important;
}
.footer-block--newsletter {
    margin-top: 2rem !important;
}

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

1 Like

It worked!! Thank you so much

1 Like