New Shopify Certification now available: Liquid Storefronts for Theme Developers

code makes header transparent

Solved
Michele113
Excursionist
15 0 8

What is the code I can insert to not make header transparent? I added the code below to Dawn 11.0 in order to show a background image of a few stars. It was the only way I could get the stars to show up. What can I add so that it does not include the header? Also, the transparent code is allowing the faint lines in the boxes to show, is there a way to get rid of those also? This was all I could come up with to get the stars to show, I may not be on the right track here. Any help appreciated!!!  url https://skyjinn.com.

 

.gradient {
background: transparent;
}
body {
background: url("https://cdn.shopify.com/s/files/1/0553/1644/7286/files/Artboard_1_f262ac90-b1ea-426d-b3ea-f24bf54f49...") !important; /* chanage image as you like */
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5626 1036 1065

This is an accepted solution.

Hi @Michele113 

Please add this code to do that 

.section-header.shopify-section-group-header-group { background: #fff !important; }

 

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 2 (2)
Dan-From-Ryviu
Shopify Partner
5626 1036 1065

This is an accepted solution.

Hi @Michele113 

Please add this code to do that 

.section-header.shopify-section-group-header-group { background: #fff !important; }

 

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

Michele113
Excursionist
15 0 8

That was perfect, thanks Dan!