I am using this custom css code that I got from here:
.html_header_transparency .header_color .main_menu .menu ul li a, .html_header_transparency .header_color .main_menu ul ul {
background-color: transparent!important;
}
Which makes my submenu background trasnparent when using a page with a transparent menu, however when scrolling down on those page and the menu takes on its background the sub menu stays transparent. Is there a way for the sub menu to use the same behavior where it’s only transparent at the top of the page and then uses it’s background color when scrolled down?
Hi caminator!
Please use following code instead
.av_header_transparency .main_menu .menu ul li a, .av_header_transparency .main_menu ul ul {
background-color: transparent!important;
}
If that does not work, please post the link to your website
Regards,
Yigit
Is it possible to change the level of transparency?
I found it out. Change the CSS code to:
.av_header_transparency .main_menu .menu ul li a, .av_header_transparency .main_menu ul ul {
background-color: rgba(255,255,255,0.4)!important;
}