How do i remove that thing that the arrow shows. i dont like it thanx
edit themes/yourtheme/theme.php, find// HTML template for filmstrip display
$template_film_strip = <<<EOT
<tr>
<td valign="top" background='themes/classic/images/tile.gif' align="center" height='30'> </td>
</tr>
<tr>
<td valign="bottom" class="thumbnails" align="center">
{THUMB_STRIP}
</td>
</tr>
<tr>
<td valign="top" background='themes/classic/images/tile.gif' align="center" height='30'> </td>
</tr>
<!-- BEGIN thumb_cell -->
<a href="{LINK_TGT}">{THUMB}</a>
{CAPTION}
{ADMIN_MENU}
<!-- END thumb_cell -->
<!-- BEGIN empty_cell -->
<td valign="top" align="center" >1 </td>
<!-- END empty_cell -->
EOT;
and replace with// HTML template for filmstrip display
$template_film_strip = <<<EOT
<tr>
<td valign="bottom" class="thumbnails" align="center">
{THUMB_STRIP}
</td>
</tr>
<!-- BEGIN thumb_cell -->
<a href="{LINK_TGT}">{THUMB}</a>
{CAPTION}
{ADMIN_MENU}
<!-- END thumb_cell -->
<!-- BEGIN empty_cell -->
<td valign="top" align="center" >1 </td>
<!-- END empty_cell -->
EOT;
it didnt work it is still there
link?