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

    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.

    #1410118

    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

    #1410122

    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.

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