Page 1 of 1

Text "click to enlarge"

Posted: Sat Nov 03, 2007 8:02 pm
by calljj
Such a simple thing, but can't find out what to enter to get "Click to Enlarge" text to display by the thin line that sits just above the thumbnails displayed on the page so that users realise that they can click on the thumbnail for it to expand

Any Ideas?

Phpbb 2 latest download version and lightbox mod installed any running fine.

Re: Text "click to enlarge"

Posted: Sun Nov 04, 2007 9:20 pm
by DavidIQ
Open viewtopic_attach_body.tpl and find this:

Code: Select all

<img src="{postrow.attach.cat_thumb_images.IMG_THUMB_SRC}" alt="{postrow.attach.cat_thumb_images.DOWNLOAD_NAME}" border="0" /></a><br />
And replace with this:

Code: Select all

<img src="{postrow.attach.cat_thumb_images.IMG_THUMB_SRC}" alt="{postrow.attach.cat_thumb_images.DOWNLOAD_NAME}" border="0" /></a><br />Click image to enlarge
If you want the words to be clickable as well then replace with this instead:

Code: Select all

<img src="{postrow.attach.cat_thumb_images.IMG_THUMB_SRC}" alt="{postrow.attach.cat_thumb_images.DOWNLOAD_NAME}" border="0" /><br />Click to enlarge</a>

Re: Text "click to enlarge"

Posted: Fri Nov 09, 2007 7:20 am
by calljj
Thank you... never realised it was quite THAT easy :roll: :D