Viewing 1 replies (of 1 total)
  • Hello @shootitwithfilm

    You can use the css to hide the title attribute, but keep in mind it will stop all mouse events on the element

    a.zoom-instagram-link { pointer-events: none; }

    or you can use a jQuery solution to remove the title attributes on the document ready event

    jQuery(document).ready(function() {
        jQuery("a.zoom-instagram-link").removeAttr("title");
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Remove Caption on Hover’ is closed to new replies.