Hello,
Im working on this website:
https://v7wybx-kb.myshopify.com/
Since I’ve made the header transparant, the menu was black in color, and buttons.
I’ve fixed the main menu, but now the dropdowns (submenus) are still black. Also if you visit a product page, you see that the varients are also black. What can I do to fix this?
I would like it to be the same as the main menu. Also the buttons I mentioned need to be the same as the other buttons. Like the varients and stuff.
Go to your online store → edit code → base.css file and paste this code in the end of file
.menu-drawer__inner-submenu {
background: #d3cccc !important;
}
.product-form__input--pill input[type=radio]:checked+label {
background-color: #fff !important;
}
.product__media-icon, .thumbnail__badge {
background-color: #ffffff !important;
}
.disclosure__button.localization-form__select {
background: transparent !important;
}
Hello @SoulfulJourney
- the dropdowns (submenus) are still black :-
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-menu-drawer.css
add this code at the end of the file and save.
.js .menu-drawer__submenu {
background-color: #d3cccc !important;
}
result
- if you visit a product page, you see that the varients are also black :-
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-product-varient-picker.css
add this code at the end of the file and save.
.product-form__input--pill input[type=radio]:checked+label {
color: #fff !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks