Hey guys,
On my work page, when you hove on an image for over a second. The name of the jpg pops up.
See screenshot : http://s11.postimg.org/pw2f540hf/Screen_Shot_2015_11_20_at_10_34_00_AM.png
Is there a way to turn this off?
Thanks!
Chris
Hi ccyran!
Try removing the title / alt text of the image.
Regards,
Elliott
Hey Elliot,
When I do that it works, but it also removes the nice title that appears when you hover over it. I want to keep this title.
Is there any CSS i can use to fix this?
Thanks!
Chris
Hi!
Please try the following Javascript, it should work:
(function(){
var ttext;
$(yourtargetselectorhere).hover(function(){
ttext = $(this).attr('title');
$(this).removeAttr('title');
},
function(){
$(this).attr('title', ttext);
});
}());
let us know if you need anything else, related to our themes.
Regards,
Basilis
Hey Basilis,
That didn’t work. See image attached :/. It also disabled and messed up the grid.
Hi!
Please see – http://kriesi.at/documentation/enfold/remove-image-titles-that-show-up-when-you-hover-on-images/
Regards,
Yigit