How do I eliminate the white colour in my header menu bar?

Hello,

I have changed the background colour of my website, but the header menu bar is still white.

How do I change this?

My website is: rheakalo.com

Thank you!

1 Like

Hi @RheaKalo

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.homeHeader .site-nav--centered {
    background: #dac5a6;
    margin: 0 !important;
    padding-top: 25px !important;
    padding-bottom: 47px !important;
}

And Save.

Result:

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

hi thank you!
I tried this but it didn’t work..

Can you add on the custom.css on the customize theme?

Click header.

And scroll down the right tab.

Here, and save.

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

1 Like

Thank you!

this worked! it is still white though on other pages.. do you know how I can fix that?

eg. https://rheakalo.com/pages/shipping-returns

Replace on this code but same location where you paste it.

.homeHeader .site-nav--centered, nav#AccessibleNav {
    background: #dac5a6;
    margin: 0 !important;
    padding-top: 25px !important;
    padding-bottom: 47px !important;
}

And Save.

Result:

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