Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #271256

    Hello, I report a little bug:
    in my website http://www.natureinframe.it at the top of the page, when I mouse over 500px icon, the text is ”Five_100_px” instead ”500px” (there aren’t problems with the text when I mouse over other icons)

    #271499

    Hi!

    There is a reason for that, classes can’t start with numbers (we use the same class string for the titles of the links), however there is a fix for that, try adding this to the theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(".social_bookmarks_five_100_px a").attr("title", "500px"); 
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

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