I want my website header to be transparent

es senceemp oriums.com/policies/shipping-policy

this is the website please check i want the header to be transparent just like the home page

2 Likes

Hi @learningdesign

The site cant be reached, please provide the right URL. Thanks!

With out image its not possible sir ?

es senceemp oriums.com/policies/shipping-policy

Please remove the space

1 Like

Please atleast tell me how to make the logo little darker so its can be visible

Please can you send me a code of background image just to the policies pages so it will not effect the home or any other pages

Can you please help me in this

Thanks, for the info. I just like to clarify. Your header is transparent but when you hover then solid color come. Do you want the solid color on hover remove?

If it is thene check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

[data-scheme=light] .header:hover {
    background-color: transparent !important;
}

And Save.

Result:

Or maybe you like it like this.

So the black font color still readable. This is the code.

[data-scheme=light] .header:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!