I need help changing the color of my drawer menu, i want to change it to #FA7F3A, What is some code to do this? Any help would be very appriciated.
Topic summary
A user seeks to change their Shopify store’s drawer menu background color to #FA7F3A (orange).
Solutions Provided:
Two CSS code snippets were offered:
- Simple approach: Target
#menu-drawerwithbackground-color: #FA7F3A !important; - Comprehensive approach: Target both
.menu-drawer__navigationand.menu-drawer__utility-linkswithbackground: #FA7F3A !important;
Both solutions instruct adding the code via Customize → Theme Settings → Custom CSS.
Current Status:
A third participant reported encountering an error when accessing the provided store URL, suggesting potential site accessibility issues. The original poster has not confirmed whether either solution worked.
Store-Blissbloom.shop
Go to Customize → Theme Settings → Custom CSS and paste this:
#menu-drawer {
background-color: #FA7F3A !important;
}
Hello @blissbloomaesthetic ,
I hope you are well!
Please copy and paste the code below by going to the Online store >> Themes >> Customize >> Click on Settings icon to the left >> Scroll down to the bottom and paste it to the custom CSS tab.
nav .menu-drawer__navigation {
background: #FA7F3A !important;
}
.menu-drawer__utility-links {
background: #FA7F3A !important;
}
Now, the color will be the change it to


