Page 1 of 1

question about viewer.php page

PostPosted: Sat Dec 03, 2011 12:23 pm
by Elthib
hi people :)

i would like to know if it's possible to have a link we can put in the viewer.php to access on the full image by clicking on it

for example like the link "Click for Full Size" on that website :

http://nsa28.casimages.com/img/2011/12/ ... 870768.jpg

Do you know what i mean ? :)

Re: question about viewer.php page

PostPosted: Sun Dec 04, 2011 6:05 pm
by SamEA
Clicking on the image just link to the full image. :)

Re: question about viewer.php page

PostPosted: Sun Dec 04, 2011 7:51 pm
by Elthib
huuh?

i don't have any link on my picture on the viewer.php page, the pic is not clickable

Re: question about viewer.php page

PostPosted: Sun Dec 04, 2011 10:11 pm
by SamEA
In ./styles/Indigo/image_viewer.php:

Replace:
Code: Select all
<img src="./<?php echo $path .$id;?>">


with
Code: Select all
<a href="<?php echo $path .$id;?>"><img src="./<?php echo $path .$id;?>"></a>

Re: question about viewer.php page

PostPosted: Mon Dec 05, 2011 12:13 am
by Elthib
thx ;)