How do I make my header on dawn theme transparent all of the time?
Topic summary
-
Goal: Make the Shopify Dawn theme header transparent at all times.
-
Proposed approach: Edit the theme’s CSS.
- Navigation: Online Store → Theme → Edit code → Assets → base.css.
- Add at the end of base.css: sticky-header.header-wrapper { background-color: transparent !important; }
-
What it does: Forces the sticky header wrapper’s background to be transparent across the site by overriding default styles with !important.
-
Status: A single step-by-step solution was provided; no confirmation from the original poster. Discussion outcome not fully verified and may remain open.
Hi @PM98 ,
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
- Assets/base.css
- Add code below to end of file
sticky-header.header-wrapper {
background-color: transparent!important;
}
