Is it possible to turn off the "larger image" text on additional images?
I've tried ".imgLinkAdditional {
display: none;
}"
but seems to have no effect.![]()
Is it possible to turn off the "larger image" text on additional images?
I've tried ".imgLinkAdditional {
display: none;
}"
but seems to have no effect.![]()
You can edit the text from "larger image" to blank, and then there is nothing to hide.
In /includes/languages/your_template/english.php, find this line:
define('TEXT_CLICK_TO_ENLARGE', 'larger image');
and change to
define('TEXT_CLICK_TO_ENLARGE', '');
Thanks, much better way of doing it. :)
Bookmarks