Disable image description when hovering
-
Disable image description when hovering
Attachments:
You must be
logged in to view attached files.
Hello,
Enter Media Library, find this image and remove the title https://prnt.sc/m3yn19
Best Regards
The title is formed automatically when you upload photos
And is considered mandatory
Is it possible not to display / hide this caption programmatically?
On some topics (for example, The7) there is such an option or simply the inscription
Hello,
Our theme does not have such an option, you can try this code:
.wpb_single_image img {
pointer-events: none;
}
Please add the code to the Theme Settings > Custom CSS
Best Regards
This code fits only one image type.
And the site uses many types:
– Galleries
– Promotional banners
…
Attachments:
You must be
logged in to view attached files.
Hello,
Add the class to the element disable-img-title
and then this code:
.disable-img-title img {
pointer-events: none;
}
Best Regards