Hi there,
How can I invert the social media icons in the menu in the top right corner?
I would like to see the blue facebook icon by default and make it neutral on hover, in order to make it more recognizable by default.
So it has to work in the opposite way, if possible.
Thank you!
Hey vossenm,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top #wrap_all .av-social-link-facebook a {
color: #fff;
background-color: #37589b;
}
#top #wrap_all .av-social-link-mail a {
color: #fff;
background-color: #9fae37;
}
#top #wrap_all .av-social-link-mail:hover a, #top #wrap_all .av-social-link-facebook:hover a {
color: #719430;
}
Best regards,
Yigit