Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #311483

    I have noticed that the font size of the alt text on my images is very large; not all of them, but several, for some reason. I suppose there is a way of changing the alt text font size, but I cannot figure out what that is. How can I make the alt text font size on some of these images more normal??

    #311521

    Hey kenwae!

    Can you post the link to your website and point out an example so we can provide you more accurate solution?

    Best regards,
    Yigit

    #311590

    kenfieldsphotography.com

    the first couple of pictures on top, the rainbow, palm front and little water fall have, when page loads up first time and I see the alt text, very large alt text font. I’ve noted this on other images as well throughout the site, but not all of them….

    #311613

    Hi!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Best regards,
    Yigit

    #311679

    Thank you.

    #311783

    Hi!

    You are welcome! Enjoy the theme

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Alt Text Font Size’ is closed to new replies.