Hi there,
I’m having trouble with the menu colours on my site.
Because I’m using the transparent glassy header the menu sits on a background image and the text hover colour needs to be white so it’s visible over the image.
However when the transparent glassy header disappears (once the user scrolls down) the white text hover makes the menu text invisible as the background is then changed to white as well.
Is there a way to have the text hover colour white when the transparent header is active, but change it to another colour once the normal menu is visible?
This is what it looks like once the transparent menu disappears:
Thanks so much for your help!
Taryn
Hey Taryn!
It’s fixed now, i disabled the Advanced Styling setting (there is no way to set this to transparent header only) and used this CSS code instead:
#top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a:hover .avia-menu-text{
color: white !important;
}
Regards,
Josue
Hey Josue,
Thanks so much, I really appreciate that!
Can I be a pain? Is it possible to still have it change colour on hover when the background is white or is that not possible now that you have had to disable the advanced styling setting? I would like it to change to #e4a3bb.
Thanks again for your help,
Taryn
Hi Taryn!
Add this below:
#top #wrap_all .main_menu ul:first-child > li > a:hover .avia-menu-text{
color: #e4a3bb !important;
}
Regards,
Josue
Brilliant, thanks so much Josue!