Hello,
I have problem with Full Width Easy Slider I see name of image in IE and firefox.
How to remove that?
http://revenuestables.com
Regards
Hi Zaccc!
Thank you for using Enfold.
You can remove the title of the actual image on Media > Library panel or add this on functions.php:
function remove_slide_title(){
?>
<script>
jQuery(window).load(function(){
var slidewrap = jQuery('.avia-slide-wrap');
jQuery(slidewrap).each(function(index, element) {
jQuery(this).removeAttr('title');
});
});
</script>
<?php
}
add_action('wp_footer', 'remove_slide_title', 10);
Regards,
Ismael
Hi!
It does work fine on my local installation. Please try copying the code from here – http://pastebin.com/22tZg5ar
Cheers!
Yigit