Hello,
I was able to change the background of the dropdown menu from transparent and select a solid color, but now I’m having issues changing the background of the nested menu. The “About” category is displaying the same background as the website is using, and I want it to be #f1d6e8.
Any suggestions would be helpful.
1 Like
Hi @RainbowSweets
WOuld you mind to share your store URL? Thanks!
Sure, it’s https://d913ed-2.myshopify.com/ and the password is tewldo.
@RainbowSweets Please follow the below steps to change the background color of sub menu on mobile device.
- From admin, Go to “Online Store” → “Themes”.
- Click “Customize” button in the current theme.
- Click “Header” as shown in below screenshot.
- Locate Custom CSS field and paste the below code as shown in below screenshot and save the changes.
.menu-drawer__inner-submenu {
background: #f1d6e8;
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
Thanks for the info, do you mean like this?
If it is check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.menu-drawer__inner-submenu {
background: #f1d6e8;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!