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,
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;
}