I am using the Easy Slider and have managed to remove the arrow on hover.
However when on hover, i am getting an image tag show up.
Is there some Quick CSS to remove this as well. Would be nice to have this as a checkbox in the easy slider :)
Cheers
John
Ok.. I think I just found it. I have it placed in the Theme Functions (functions.php)
function add_custom_script(){
?>
<script>
jQuery(window).on('load', function(){
jQuery('img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');