All things Shopify and commerce
I am trying to create a transparent header like so:
Can someone please advise how to do this in the most current Dawn theme (15.2.0)?
Thank you!
Solved! Go to the solution
This is an accepted solution.
Hey @meowieowie
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
header {
position: absolute !important;
max-width: 100% !important;
width: 100% !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
Hi @meowieowie
Please add this code to theme.liquid file, after <head> in Online Store > Themes > Edit code
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
background: transparent;
transition: background .25s ease-in-out; }
#MainContent { margin-top: -81px; }
html .section-header.scrolled-past-header .header-wrapper { background: #fff; }
@media (max-width: 749px) {
html #MainContent { margin-top: -73px; }
}
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Hey @meowieowie
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
This is an accepted solution.
Hey @meowieowie
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
header {
position: absolute !important;
max-width: 100% !important;
width: 100% !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Thanks Moeed! I realized that I actually would like it to also become solid when scrolling. Are you able to adjust the code to accommodate?
This is an accepted solution.
Hi @meowieowie
Please add this code to theme.liquid file, after <head> in Online Store > Themes > Edit code
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
background: transparent;
transition: background .25s ease-in-out; }
#MainContent { margin-top: -81px; }
html .section-header.scrolled-past-header .header-wrapper { background: #fff; }
@media (max-width: 749px) {
html #MainContent { margin-top: -73px; }
}
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Perfect, thank you!
You are very welcome!
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Can you help me make the Header transparent, and when scrolling down it is white background with my 2nd logo (different color), hope you can help me, i tried many times but failed. Thank you
Please drop your store URL here
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
url store: puppyjoyful.com, pls help me :((
The first logo is white, in the transparent part of the header, and when scrolling down I change want the blue logo (my other color logo) to be on a white background.
Please add this code to theme.liquid file, after <head> in Online Store > Themes > Edit code
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
background: transparent;
}
.section-header .header-wrapper .header__heading-link.media {
background-image: URL('https://community.shopify.com/c/image/serverpage/image-id/524036iABFD59AAB5EC2623/image-size/large?v=v2&px=999');
background-size: cover;
}
.section-header .header-wrapper .header__heading-link.media img { opacity: 0; }
#MainContent { margin-top: -96px; }
#shopify-section-template--23443484606771__custom_liquid_7EgeaU { position: relative; z-index: 4; }
HTML .scrolled-past-header .header-wrapper {
background: #fff;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media {
background-image: unset;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media img { opacity: 1; }
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
I did it and it worked but how to make menu + cart and search bar white when in transparent background, pls help me. Thank you
Please update the code.
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
background: transparent;
}
.section-header .header-wrapper .header__icon, .section-header .header-wrapper .header__icon--cart .icon,
.section-header .header-wrapper .list-menu__item {
color: #fff;
}
.section-header .header-wrapper .header__heading-link.media {
background-image: URL('https://community.shopify.com/c/image/serverpage/image-id/524036iABFD59AAB5EC2623/image-size/large?v=v2&px=999');
background-size: cover;
}
.section-header .header-wrapper .header__heading-link.media img { opacity: 0; }
#MainContent { margin-top: -96px; }
HTML .scrolled-past-header .header-wrapper {
background: #fff;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media {
background-image: unset;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media img { opacity: 1; }
HTML .scrolled-past-header .header-wrapper .header__icon, HTML .scrolled-past-header .header-wrapper .header__icon--cart .icon,
HTML .scrolled-past-header .header-wrapper .list-menu__item {
color: #000;
}
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Wowww. Everything worked fine thank you so much for helping me, I am so happy I got it to work what I wanted. Thank you so much ❤️
Hi bro, I just discovered this, after completing your instructions, there is an error happening on mobile devices, when in transparent state of Header, when opening menu tab, all text changes to white, Please help me. Thank you.
Bạn update lại code nhé
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
background: transparent;
}
@media (min-width: 749px) {
.section-header .header-wrapper .header__icon, .section-header .header-wrapper .header__icon--cart .icon,
.section-header .header-wrapper .list-menu__item {
color: #fff;
}
}
.section-header .header-wrapper .header__heading-link.media {
background-image: URL('https://community.shopify.com/c/image/serverpage/image-id/524036iABFD59AAB5EC2623/image-size/large?v=v2&px=999');
background-size: cover;
}
.section-header .header-wrapper .header__heading-link.media img { opacity: 0; }
#MainContent { margin-top: -96px; }
HTML .scrolled-past-header .header-wrapper {
background: #fff;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media {
background-image: unset;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media img { opacity: 1; }
HTML .scrolled-past-header .header-wrapper .header__icon, HTML .scrolled-past-header .header-wrapper .header__icon--cart .icon,
HTML .scrolled-past-header .header-wrapper .list-menu__item {
color: #000;
}
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Code updated
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
background: transparent;
}
.section-header .header-wrapper .header__icon, .section-header .header-wrapper .header__icon--cart .icon {
color: #fff;
}
@media (min-width: 749px) {
.section-header .header-wrapper .header__icon, .section-header .header-wrapper .header__icon--cart .icon,
.section-header .header-wrapper .list-menu__item {
color: #fff;
}
}
.section-header .header-wrapper .header__heading-link.media {
background-image: URL('https://community.shopify.com/c/image/serverpage/image-id/524036iABFD59AAB5EC2623/image-size/large?v=v2&px=999');
background-size: cover;
}
.section-header .header-wrapper .header__heading-link.media img { opacity: 0; }
#MainContent { margin-top: -96px; }
HTML .scrolled-past-header .header-wrapper {
background: #fff;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media {
background-image: unset;
}
HTML .scrolled-past-header .header-wrapper .header__heading-link.media img { opacity: 1; }
HTML .scrolled-past-header .header-wrapper .header__icon, HTML .scrolled-past-header .header-wrapper .header__icon--cart .icon,
HTML .scrolled-past-header .header-wrapper .list-menu__item {
color: #000;
}
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Hi,
Can you help me change the number background color displayed on the cart to #A3B9D2 and the "X" in the menu tab on mobile to black because it is currently white, in the transparent header. Thank you
Please add this more code.
.menu-drawer .menu-drawer__close-btn .icon {
color: #000;
}
.cart-count-bubble {
background-color: #A3B9D2 !important;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Which file and in which section to add it.
With the code I provided in the past.
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Perfect, thank you so much!
Very welcome!
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Hi, can you help me? I want to turn off the separator line in the Header, but I only want to turn it off on the home page, the other pages still work normally, now when I turn off the separator line in the header of other pages, it also turns off.
Hey @PuppyJoyful
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
{% if template == 'index' %}
<style>
.section-header .header-wrapper {
border: 0 !important;
}
</style>
{% endif %}
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Perfect, thank you so much! 😍
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.
Can you help me with this i cant figure out how to fix it.
Is there any way to delete the old favicon, I don't know where to delete it.
As in the picture, the favicon above is the one I want to delete, and the favicon below is the one I'm currently using, but sometimes it still shows the old favicon (above)
Hey @PuppyJoyful
Feel free to share your collaborator request code in my private messages so I can help you out because for that I would need access of your back end to figure it out.
Best Regards,
Moeed
reply my messagaes
Hi, Dan
Can you come to my store and check, I want to resize the Desktop Image Banner like this website: https://teazys.com/ , how do I do that, because it currently displays too large on desktop, make sure the image is not cropped when resizing
Hi @meowieowie
I have recently implemented this feature on multiple stores. If you're still experiencing any issues, feel free to reach out—I’ll be happy to assist you.
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025