Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1332819

    Hello, i want to delete the color or maybe set the transparency to 0% on Image-hover effect

    #1332832

    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

    • This reply was modified 2 years, 11 months ago by Yigit.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.