I would like to change ONLY (for Dawn theme):
-
Header background color
-
Header (and sub-header) text color
I would like to change ONLY (for Dawn theme):
Header background color
Header (and sub-header) text color
for header background
sticky-header.header-wrapper.color-background-1.gradient.header-wrapper--border-bottom {
background: red;
}
For menu color :
nav.header__inline-menu span {
color: #fff;
}
fro sub header text :
ul#HeaderMenu-MenuList-2 a, ul#HeaderMenu-MenuList-1 a {
color: red;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
Note : Change color as you need.
Thank you. It works great. I now realize that I also need to change the color of the search, cart and user login icons.
.header__icons a, svg.modal__toggle-open.icon.icon-search {
color: red;
}
Fantastic!! It works. Now I again noticed the last element on that header that I want to change the color for.
svg.icon.icon-caret {
color: red;
}
Great. Thank you for the help!
.menu-drawer-container svg.icon.icon-hamburger {
color: #fff;
}