Hi,
I’d like to completely remove all hover effects on the images in Enfold. I found this code in another thread here:
.image-overlay-inside, .image-overlay.overlay-type-extern {
display: none;
}
But this only removes the overlay icon, the opacity effect on images is still there. Can you guys help me out? :)
Michael
Hi,
The overlay is a css background color with a % transparency. To remove it please use this
#top .image-overlay {
background: rgba(255, 255, 255, 0);
}
Thanks,
Nick