Hi all, hope someone will be able to help me how to change a background colour of the mobile drop down 2nd level menu. I’ve found the below code to change mobile drop down menu background colour, but it only changes 1st level menu (ie. when you tap the hamburger menu icon) but it doesn’t change the menu colour when I further drill down in menu. I have the Refresh theme. Appreciate any help. Thank you
@media only screen and (max-width: 989px){
div#menu-drawer {
background: #201F2B;
}
@RK2024 Please replace your code with the below code to change the background color also for the sub menu on mobile view alone. Let me know whether it is helpful for you.
@media only screen and (max-width: 989px){
div#menu-drawer, .menu-drawer__submenu.has-submenu {
background: #201F2B;
}
}
Thank you Priyavinsinfo, but unfortunately the colour is still blue. I replaced the old css with the one you suggested in base.css and saved, but it didn’t work. Please let me know if you have any other ideas. Thank you