Hi!,
I noticed my mobile hamburger menu color is mixed colors. I would like to change the pink color to match the purple in the rest of the menu?
Any suggestions for how I could do this?
Any help is greatly appreciated!
Thanks
A user encountered a color inconsistency in their mobile hamburger menu, where pink sections didn’t match the purple used throughout the rest of the menu.
Solutions Provided:
Outcome:
Hi!,
I noticed my mobile hamburger menu color is mixed colors. I would like to change the pink color to match the purple in the rest of the menu?
Any suggestions for how I could do this?
Any help is greatly appreciated!
Thanks
Hey @StellarFae ,
Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.
Screenshot is for reference only, the correct code to paste is the one shown above.
@ThePrimeWeb Try adding below css to your css file.
@media screen and (max-width: 480px){
.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover,
.menu-drawer__utility-links{
background-color: rgb(222, 210, 241) !important;
}
}
Thank you! This worked to change both of the sections that were pink.
Thank you for your help! This did change the HOME section to the correct color but did not change the bottom section that was also pink. Someone else also commented with a solution that worked so it’s all fixed now. I appreciate you taking the time to look at it and help me. ![]()
Well it’s literally the same code, but whatever works haha.