Is it difficult to move the image navigation into the sys menu? I managed to move the links so they appear where i want them.. however they dont work. SO far I just copied this code from the //HTML temlplate for the image navigation bar and moved into the //HTML template for sys menu
<tr>
<td align="center" valign="middle" class="navmenu" width="48">
<a href="{THUMB_TGT}" class="navmenu_pic" title="{THUMB_TITLE}"><img src="../thumbnails.gif" align="middle" border="0" alt="{THUMB_TITLE}" /></a>
</td>
<td align="center" valign="middle" class="navmenu" width="28">
<a href="{PREV_TGT}" class="navmenu_pic" title="{PREV_TITLE}"><img src="../nav_left.gif" border="0" align="middle" alt="{PREV_TITLE}" /></a>
</td>
<td align="center" valign="middle" class="navmenu" width="28">
<a href="{NEXT_TGT}" class="navmenu_pic" title="{NEXT_TITLE}"><img src="../nav_right.gif" border="0" align="middle" alt="{NEXT_TITLE}" /></a>
</td>
what do I have to do so they actually work? Right now clicking them leads to a 404 where it is actually looking for the URL /gallery/{PREV_TGT} .
Does it have something to do with $template_img_navbar ?
ERm.. ??? I guess this doesnt really make sense as the nav buttons are only for when the intermediate image is displayed. I have to leave them where they are or else try moving them with CSS.