Using Enviera Gallery and I want to hide the image title when hovering over and image. I added the following code to WP Customize Additional CSS and also Themeco’s Eliment CSS with no luck
/* Hides the title tooltip on all images */
img {
pointer-events: none;
}
/* Hide image titles on hover */
img[title]:hover::after {
display: none !important;
}
img[title] {
pointer-events: none !important;
}
.pswp__caption__center {
display: none !important;
}