How can I move the Return to the thumbnails page icon under the filmstrip?
thanks.
Do you want to move just that button or the entire navigation bar?
just that button.
I assume the easiest way is to remove that button completely from $template_img_navbar and add it via
global $album, $pos;
echo '<a href="thumbnails.php?album='.$album.'&page='.ceil(($pos + 1) / ($CONFIG['thumbrows'] * $CONFIG['thumbcols'])).'"><img border="0" align="middle" alt="Return to the thumbnail page" src="images/navbar/thumbnails.png"></a>';
at your desired location in the function theme_display_image.
thanks.it works.