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
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
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
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
Works perfect! Thanks a lot!