Tagged: child theme, CSS
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.
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
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 :)