Tagged: header, main menu, transparent menu
Hi Team,
I’d like to have a text shadow ONLY on the transparent main menu and NOT on the fixed header scroll down menu. So, once you scroll down, the shadow must disappear.
When I add this code, the shadow stays once you scroll down:
.main_menu {
text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
Please advise.
Thanks and Cheers,
Jan :)
Hey Jan!
You can do this to remove it.
.header-scrolled .main_menu, .header_scrolled .main_menu {
text-shadow: 0px !important;
}
Regards,
Elliott
Hi Elliott,
thank you. But it won’t disappear when scrolling down:
Any other ideas?
Cheers,
Jan
Hi!
Please change your original code to following one
.av_header_transparency .main_menu {
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
Best regards,
Yigit
PERFECT! That worked. Thank you :)))