Can't change header color

Hi,

I am trying to change my header color which is currently black. I went to theme options > Header > CCS and adjust the rgba colors but have had no luck.

x-navbar {
border-bottom: 0;
background-color: rgba(03, 02, 01, 01);
box-shadow: none;

Site
www.goodmischief.co

Hello @audiofire11,

Thanks for writing in!

Your css code is incorrect. Please have it updated and use this:

.x-navbar {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 1) !important;
    box-shadow: none;
}

We would love to know if this has worked for you. Thank you.

It worked! Thanks a bunch. I see I was missing apart of the css code.

You’re more than welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.