Tagged: image overlay
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!
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
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.
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