
Originally Posted by
nigelt74
Actually all I want to do is remove the alt tag from showing when you hover over - not actually remove the alt tag itself from the image. The image handler is purposely displaying that in the hover so it has to be in the image handler files.
Then I started thinking. I was looking to the php for an answer - there's javascript with this thing (DUH).
So with a little bit of experimentation:
in templates/js/jscript_imagehover.js
line 193
Code:
newHTML = '<div><h1>' + title + '</h1>';
change it to this to keep the white border
Code:
newHTML = '<div><h1>' + '</h1>';
or this to remove the white border
I love answering my own questions!
Bookmarks