Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #320150

    Hi,

    is there any way to change the image overlays, making them looking a bit more modern?

    currently (live here: http://kriesi.at/themes/enfold/portfolio/portfolio-3-column/) the overlays are like this:

    I would like to have a more modern style like this for example:

    means: color overlay + custom text overlay

    Is this possible any way? What files do I need to change – or (because I’m not very good in coding) is there a plugin, that could do this easily for me? Or is it simple to change?

    Thanks a lot in advance!

    #320619

    Hi COLORIT!

    Unfortunately it is not easily possible. You are going to need to modify avia.js file inside Enfold/js folder.

    Best regards,
    Yigit

    #320795

    okay, thank you. Could you please tell me how to suppress this tooltip like in the first screenshot “Single Portfolio: 2/3 Gallery”? It looks really old-fashioned ;-)

    Thank you.

    #320983

    Hey!

    Thank you for the update.

    That is default browser feature showing the image title. You need to remove the title attribute if you don’t want the tooltip. Try adding this on functions.php:

    function remove_image_title() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    
    add_filter('wp_head', 'remove_image_title');

    Regards,
    Ismael

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