Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #653003

    Hey, i try to figure out where i can hide the image captions at my header!
    I dont want to see Tumbler etc @ rollover.
    Do you have an advice?
    Thanks in advance, Jan

    #653291

    Hey b00p,

    I couldn’t see anything like that on the site you linked to, could you try to explain bit further and/or post a screenshot of the issue please?

    Best regards,
    Rikard

    #653730

    Hey Rikard, sorry for the bad description! Ive modified the social icons to the volkswagen and audi logos at my header.
    Now if i cross the icons with my mouse i see the image tooltip “Vimeo” etc like in my screenshot. Is there a way to edit oder remove this tooltips?
    Thanks in advance, Jan

    #655071

    Hi,

    Thank you for the screenshot. You have to remove the title attribute of the social icons. Please use this in the functions.php file:

    // custom script
    function add_custom_script(){
    ?>
    <script>
    (function($){
    	function i() {
    		$('.social_bookmarks li a').each(function() {
    			$(this).removeAttr('title');
    		});
    	}
    
    	i();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Ismael

    #660243

    Works perfect! Thanks a lot!

    #660580

    Hi,

    Great, glad we could help :-)

    Please open a new thread if you should have any further questions or problems.

    Thanks,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Hide Image Captain @ Social Icons / Header’ is closed to new replies.