Tagged: Image Hover Effect
Hello, i want to delete the color or maybe set the transparency to 0% on Image-hover effect
Hey,
Thanks for contacting us!
Please edit your Image element and go to Advanced > Developer Settings tab and give it custom ID (“my-custom-id” in example below) and then add following code to bottom of Quick CSS field in Enfold theme options > General Styling tab
#my-custom-id img {
-webkit-transition: opacity 0.4s ease-in-out;
-moz-transition: opacity 0.4s ease-in-out;
transition: opacity 0.4s ease-in-out;
}
#my-custom-id img:hover {
opacity: 0;
}
Regards,
Yigit