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

    How to remove the tool-tip when pointing to the image?

    #1354109
    This reply has been marked as private.
    #1354140

    Hi,
    Thank you for the link to your site, to remove the image title on mouse-over try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_title_from_all_elements_on_hover() { ?>
        <script>
    (function($){
      $("*").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'remove_title_from_all_elements_on_hover');

    The only two images that I see that are blurry is the top two images, both are very small images (300px) and you are displaying them very large, for example, the top image is 300×150 and it is shown as a full width image, please use larger images to correct.
    Below are direct links to the images please review.

    Best regards,
    Mike

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.