Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #223659

    I would like to remove the icon that appear when you over the mouse on any kind of link image. I know how to remove it from the css and all that stuff, but there is somehow to do it in the child theme so I will not have to edit on every update the files?

    Thanks.

    #223802

    Hi Pedro!

    You can add the css code on the child theme’s style.css file.

    .image-overlay {
    display: none !important;
    opacity: 0 !important;
    }

    Cheers!
    Ismael

    #223878

    That code removes also the white clear over the image… I figured out how to…

    	.image-overlay .image-overlay-inside:before{content: none !important;}
    	.image-overlay.overlay-type-extern .image-overlay-inside:before{content: none !important;}
    	.image-overlay.overlay-type-video .image-overlay-inside:before{content: none !important;}

    Thank you anyways :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove the icon effect on images’ is closed to new replies.