Hi!
I want to change my drop-down menu background color from white to black, and text color from black to white. Can someone tell me how to do it? The theme I’m using is Booster, and I don’t have base.css in my code files.
Thank you
Hi!
I want to change my drop-down menu background color from white to black, and text color from black to white. Can someone tell me how to do it? The theme I’m using is Booster, and I don’t have base.css in my code files.
Thank you
Hello @hunainkhan ,
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code
Go to Assets folder → theme.scss.liquid file → add this following code at the bottom of page
.site-nav-dropdown {
background-color: black;
}
.site-nav-dropdown a {
color: white;
}
Save changes
Hope this can help.
Ali Reviews team.