This topic has 5 replies, 3 voices, and was last updated 7 years, 7 months ago ago by Olga Barlow
I wanted to change the color of the dropdown menu in green, but somehow white spaces occur and when selecting something also a white box occur, can you please help? Thnx
here is a link with the scrn shot http://prnt.sc/exs7fn
You can use following code to change drop down menu hover background color to change to green
.nav-sublist-dropdown ul>li>a:hover { background-color: #008000; }
if you put the above code in,
8theme options >> styling >> custom CSS >> global custom css the white box will be replaced as green.
if you want to keep the white box and change the text colour you can do that in
8theme options >> Typography >> navigation >> menu second level >> font color
I have added the code but it didnt work out.. can u pls check why not?
Hello,
To change the drop-down bg color and border
.menu-wrapper .menu > li:hover .nav-sublist-dropdown {
background-color: #3f7622;
border-color: rgba(255, 255, 255, 0.3);
}
To change link bg color on hover
.item-design-dropdown .nav-sublist-dropdown ul > li > a:hover {
background-color: #2f4514;
}
Check your site now.
Regards
You must be logged in to reply to this topic.Log in/Sign up