Tagged: overlay, partner logo
Hi there,
I insert a logo grid in a page of my website. And i’m trying to add hover effect on the linked logos (for example image overlay) How can i do that ?
Thanks for your help.
Hi Eponyme-marketing!
Can you post the link to your website please?
Cheers!
Andy
Hi!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_overlay(){
?>
<script>
jQuery(window).load(function(){
jQuery('a.slide-image').append('<span class="image-overlay overlay-type-extern" style="left: -5px; top: 0px; overflow: hidden; display: block; height: 140px; width: 170px;"><span class="image-overlay-inside"></span></span>');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_overlay');
Regards,
Yigit
Hi Yigit,
It works fine for me.
Thanks a lot for your help.
Have a nice day.
Best regards,
Hélène