Hi guys,
I have just removed one mega menu app from my store. The standard home page drop menu background became white. I would like to make all drop menu background color to be the theme color #d0021b, and font color white.
Thank you
Hi guys,
I have just removed one mega menu app from my store. The standard home page drop menu background became white. I would like to make all drop menu background color to be the theme color #d0021b, and font color white.
Thank you
.site-nav--has-dropdown>.site-nav__dropdown{
background-color:#d0021b;
}
I may not have understood what you meant?
Hello @Alliance
I would like to give you a solution to support you:
<style>
.site-nav__dropdown {
background-color: #d0021b !important;
}
</style>
Please Like and Accept Solution. This mean alot to me.
This is the current style, what do you want it to look like?
Need the same style for all other drop menu. Thats for FAQ page only.
.site-nav__dropdown .site-nav__link:hover{
background-color:your color;
}
Didn’t work. I need just hover tabs.
![]()
your color Change to your highlighting colour parameter!
.site-nav__childlist{
background-color:#000;
}
.site-nav__dropdown--centered{
width:auto !important;
left: auto !important;
}
.site-nav__dropdown{
background-color:rgba(0,0,0,.5);
padding: 11px 5px !important;
}
Can we consider all of that in Mobile View?
@Alliance
add below css
.site-nav__dropdown {
background-color: rgba(0,0,0,.7) !important;
padding: 5px 2px !important;
}
.site-nav__dropdown--left:not(.site-nav__dropdown--centered) {
left: 0;
margin-top: -17px !important;
}
Need to apply all in Mobile View. Thank you