Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1475521

    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

    #1475522

    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');
    #1475535

    Hi,

    Great! Glad to know that you found a solution. Please note that the script will affect all images on the entire site. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘easy slider hide image tag’ is closed to new replies.