Change the navigation background color in Dawn Theme

Hello,

Here is the site I am working on: https://vinylfunforeveryone.com/

I would like to change the background color of the navigation section, not the entire header. Is there a way to do this? I need it changed to this color: #E82267

Hello @BChristine ,

You can try to follow these steps:

Go to Online Store β†’ Themes β†’ Actions β†’ Edit code

Go to Assets folder β†’ base.css file or theme.scss.liquid file

Add this following code at the bottom of page

.your-navigation-selector {
  background-color: #E82267;
}

Replace β€œ.your-navigation-selector” with the actual CSS selector for your navigation section

Save and preview

Hope this can help.

Transcy

Hello @BChristine
please add this css Asset > base.css and paste this at the bottom of the file:-

nav.header__inline-menu {
background-color: #E82267;
}

Hello @BChristine

You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

nav.header__inline-menu {
    background: #E82267;
}

It worked, but is there a way to get the color to go across the entire header and not only the navigation?

It worked, but is there a way to get the color to go across the entire header and not only the navigation?

And when I change the font to white, then click on the drop-down menu, I get this: The background of the drop-down menu is white and not pink.

And when I change the font to white, then click on the drop-down menu, I get this: The background of the drop-down menu is white and not pink.