Hi! I’m using the Atelier theme and I want the header to stay 100% transparent — no background on scroll or hover.
I added custom CSS in the of theme.liquid, but the header still turns white. What class or method should I override to stop this?
Thanks!
(I have tried everything and nothing works)
Moeed
June 16, 2025, 5:39pm
2
Hey @Sebotas
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hey! @Sebotas ,
Go to your Shopify Admin Panel.
Navigate to Online Store → Themes.
Click on Edit Code (not Customize).
Open the theme.liquid file (found inside the Layout folder).
Scroll down and paste the code just before the tag:
Moeed
June 16, 2025, 5:51pm
5
Hey @Sebotas
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi, experiencing the same issue but the box with your code is empty, could you share it again? Thanks!!
Moeed
August 19, 2025, 2:56pm
7
Hey @user709
Happy to help you out, feel free to share your store URL and password (if enabled)
Best,
Moeed
thanks! So the two issues with the header I’m experienceing are:
when hoovering over any of the links of the header, the header is no longer transparent but turns white
on my pages like ‘about’ or ‘learn’ the header is standard white - and would love to have the same transparent effect as on the homepage!
website:
Thanks!
Moeed
August 19, 2025, 3:09pm
9
Hey @user709
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above </ body> tag
<style>
.header[transparent] .header__row {
background: transparent !important;
}
</style>
{% if template == 'index' %}
<style>
header-component#header-component {
position: absolute !important;
z-index: 9999 !important;
width: 100% !important;
max-width: 100% !important;
}
</style>
{% endif %}
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Thank you!! It worked for the first issue with the hover, but I don’t see any changes on the other pages. Any ideas for those?
Moeed
August 19, 2025, 3:17pm
11
Share your collaborator request code in my private messages and I can take care of that for you!
Best,
Moeed
I ended up pasting this:
<style>
header-component#header-component {
position: absolute !important;
z-index: 9999 !important;
width: 100% !important;
max-width: 100% !important;
}
</style>
in the hero.liquid (as the images are under hero) and it worked! Thanks for your help!
Moeed
August 19, 2025, 3:50pm
13
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.