How can I make my online store's down header transparent?

Topic summary

A user seeks to make their online store’s footer header transparent, similar to how stars appear at the top of their site.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
footer.footer.color-background-1.gradient.section-footer-padding {
  background: transparent !important;
}
  • Save the changes

Outcome: The solution was successfully implemented and confirmed working by the original poster.

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

How can i make my store down header transparent

Heres my url: www.grizelclothing.com

I wanna make it like its on the top, so the stars would show in the down too.

1 Like

Hi @nicotiini

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.footer.color-background-1.gradient.section-footer-padding {
    background: transparent !important;
}

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

1 Like

Thank you, it worked!