This topic has 14 replies, 2 voices, and was last updated 7 years, 2 months ago ago by Rose Tyler
Hello,
I’m using Royal theme and I want to change background colour of dropdown menu. Now is white and i want to have transparent gray colour because of whole web site designe. How can I do that? I have tried several CSS code but non of them worked.
Web site url:
http://www.onelife.si
Pleas help.
Thank you,
Bojan
Hello,
Please add this code in Theme Options > Custom css:
.menu .nav-sublist-dropdown ul {
background-color: rgba(230, 230, 230, 0.17);
}
Regards
Hello,
unfortunatly the code is not working. I have tried in global custom CSS andcustom CSS for desktop. Te dropdown container is still white.
Any other help?
thank you
Please try to change color in code, for example to red;
Regards
Red is working but transparent is not working.
It works, but color from the first example was too transparent, please see screenshot http://prntscr.com/gfrx1p
Regards
So dropdown container can not be transparent?
You may try also this code:
.menu > li:hover .nav-sublist-dropdown {
opacity: 0.9;
}
Regards
grat thx. One more question how can I make only background container transparent and text normal. Because if i use this code it will also text transparent
Please try to change this previous code:
.menu > li:hover .nav-sublist-dropdown {
opacity: 0.9;
}
to
.menu > li:hover .nav-sublist-dropdown {
background-color: rgba(255,255,255,0.2);
}
Regards
Unfortunatly it is not working
Change 1 to 0.8 http://prntscr.com/gftuz9
Regards
Perfect thank you very much top support 😀
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up