Hi Kriesi
Please can you assist me with removing the hover option for the social media buttons. I don;t want any hover text to appear. All I want is the colour change with mouse over.
Hi M-Graphics24,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
#top .av-share-box .avia-related-tooltip.avia-tt {
display: none !important;
}
Best regards,
Nikko
you can remove the titles ( and these are responsible for those browser tooltips ) from those social-bookmark links by this snippet inside your child-theme functions.php:
function remove_title_attr(){
?>
<script>
(function($) {
$(window).on('load', function(){
$('.social_bookmarks a').removeAttr('title');
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'remove_title_attr');
Edit: ah i see – you do not belong to the share buttons on top or in the footer – but to those share buttons under the single posts
so try Nikkos css.