I would like to change all colors on the mobile menu. Where do I code this?
https://morningragecoffee.myshopify.com
password aultay
I would like to change all colors on the mobile menu. Where do I code this?
https://morningragecoffee.myshopify.com
password aultay
Hi @michaelsf83 ,
Thank you for sharing your website. Are you talking about the highlight color when you tap? If so, please follow the instructions below to change it.
NOTE: Change color red to the color you want
ul.menu-drawer__menu.has-submenu.list-menu li {
-webkit-tap-highlight-color: red;
}
Thats the highlight color, im talking about the text and everything, the icons at the bottom too. Those are all White. I wanted to make them #B3B1A2
Here your go. Please change the code provided with the code below.
.menu-drawer__inner-container {
-webkit-tap-highlight-color: rgba(179,177,162, 0.5);
}
Looks like this did it ![]()
/* Change Color on Menu */
.header__icon,
.header__icon–cart,
.header__icon–menu .icon-hamburger,
.header__icon–menu .icon-close,
.header__icon–menu .icon,
.header__icon–account,
.menu-drawer__close-button:focus,
.menu-drawer__close-button:hover,
.menu-drawer__menu-item–active,
.menu-drawer__menu-item:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__account,
.list-social__link,
.link–text,
.header__active-menu-item {
color: #B3B1A2 !important;
}