Quote:
Originally Posted by viper357
Thanks for this Joe.
Quick question, I know you can do it  Can you make up a mod or style/graphics thread about how to change the next/last links to buttons please? Thanks. 
|
That's pretty easy, not sure it's worth it's own thread.
In the same
album_pictureview template find this code:
Code:
<a href="album.php?$session[sessionurl]albumid=$albuminfo[albumid]&pictureid=$pic_location[prev_pictureid]">$pic_location[prev_text_short]</a> |
<a href="album.php?$session[sessionurl]albumid=$albuminfo[albumid]&pictureid=$pic_location[next_pictureid]">$pic_location[next_text_short]</a>
Replace it with:
Code:
<a href="album.php?$session[sessionurl]albumid=$albuminfo[albumid]&pictureid=$pic_location[prev_pictureid]"><img src="images/buttons/prev.gif" alt="$pic_location[prev_text_short]" border="0" /></a> |
<a href="album.php?$session[sessionurl]albumid=$albuminfo[albumid]&pictureid=$pic_location[next_pictureid]"><img src="images/buttons/next.gif" alt="$pic_location[next_text_short]" border="0" /></a>
Note the text in RED has been added.
This assumes you have two images named
prev.gif and
next.gif in your images/buttons/ directory.