Is there a way to disable all the alt text elements on image hover? Right now when you hover over an image, it’ll display the media’s title.
Hey schenkco,
Thanks for getting in touch with us!
Try adding this code to the footer.php file:
<script type="text/javascript">
/* The first line waits until the page has finished to load and is ready to manipulate */
$(document).ready(function(){
/* remove the 'title' attribute of all <img /> tags */
$("img").removeAttr("title");
});
</script>
Best regards,
Jordan
Hi!
You can also refer to this post – http://kriesi.at/documentation/enfold/remove-image-titles-that-show-up-when-you-hover-on-images/
Cheers!
Yigit
Perfect, thanks to you both!