How do I stop image names from showing on mouse hover?

Posted in: Newsmag
Post count: 136

Hi,

How do I remove the image name from showing up when people hover the mouse over the image?
https://smallcaps.com.au/wp-content/uploads/2017/04/Image-text-showing.jpg

I do not want to remove the name completely for SEO purposes just need it hidden from showing up for a better user experience and visual appeal.

Thanks

Post count: 136

On another theme site the css code goes something like this I believe:

.fusion-imageframe img {
pointer-events: none;
}

Post count: 7909

Hi,

The theme doesn’t have an option for this and practically it is not related to the theme. You may try to use a hook or a plugin and remove the image title, but you said above you don’t want to remove it.

You can try css code for post content images and featured image and see if it helps:


.td-post-featured-image img, .td-post-content img {
pointer-events: none;
}

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newsmag’ is closed to new topics and replies.