Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I would like your help with an issue that is bothering us
We have made our online store exactly how we wanted it to look,
The main problem we want to solve is that, while on the home page the header is transparent, on all other pages it appears with a white wrapper,
So the question is how to make the header transparent on all pages
Site: https://www.petjoyfully.com/
Solved! Go to the solution
This is an accepted solution.
Go to your Online store > Themes > Edit code > add this code at the bottom of base.css file
.header-wrapper{
position: fixed !important;
width: 100% !important;
background: rgba(255, 255, 255, 0.00) !important;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Go to your Online store > Themes > Edit code > add this code at the bottom of base.css file
.header-wrapper{
position: fixed !important;
width: 100% !important;
background: rgba(255, 255, 255, 0.00) !important;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.
Thanx a lot!
Welcome @Kostas_katal
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.
Go customize > edited code > header.liquid and past this code
.header-wrapper {
display: block important;
position: absolute !important;
width: 100%;
}
.header-wrapper.color-scheme-cb149d64-5c5a-4f9c-89c2-4b11e9eefe6f.gradient{
background-color: transparent !important;
}