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

    I would like to limit the hoovereffekt on my circle-image so that i don´t get the square-hoover. optionally i would just like to cancel the hoovereffekt. Is any of this possible ?

    http://printish.dk/produkter/

    Kind regards.

    #303167

    Hey topprintish!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .image-overlay { display: none !important; }

    Best regards,
    Yigit

    #303178

    NICE ! -is it possible to remove the box containing filename aswell ?

    #303184

    Hey!

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

    Cheers!
    Yigit

    #303189

    THANKS !

    #303191

    Hi!

    You are welcome, glad we could help! :) Let us know if you have any other questions or issues

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘change hoovereffekt on images’ is closed to new replies.