hi is it possible to have a different image appear on hover for the website logo of a fixed header?
Hey codecreative,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
/*Add your own logo on hover:*/
.logo a:hover img {
opacity: 0;
}
.logo a:hover {
background: url(https://domain.com/folder/hover-logo.png) no-repeat;
}
Best regards,
Vinay