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)
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