forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: Konstantinos on July 06, 2005, 11:15:39 am

Title: remove the graphick (or whatever that is)
Post by: Konstantinos on July 06, 2005, 11:15:39 am
How do i remove that thing that the arrow shows. i dont like it thanx
Title: Re: remove the graphick (or whatever that is)
Post by: Joachim Müller on July 07, 2005, 11:24:57 am
edit themes/yourtheme/theme.php, find
Code: [Select]
// HTML template for filmstrip display
$template_film_strip = <<<EOT

        <tr>
         <td valign="top" background='themes/classic/images/tile.gif' align="center" height='30'>&nbsp;</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'>&nbsp;</td>
        </tr>
<!-- BEGIN thumb_cell -->
                                        <a href="{LINK_TGT}">{THUMB}</a>&nbsp;
                                        {CAPTION}
                                        {ADMIN_MENU}
<!-- END thumb_cell -->
<!-- BEGIN empty_cell -->
                <td valign="top" align="center" >1&nbsp;</td>
<!-- END empty_cell -->

EOT;
and replace with
Code: [Select]
// 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>&nbsp;
                                        {CAPTION}
                                        {ADMIN_MENU}
<!-- END thumb_cell -->
<!-- BEGIN empty_cell -->
                <td valign="top" align="center" >1&nbsp;</td>
<!-- END empty_cell -->

EOT;
Title: Re: remove the graphick (or whatever that is)
Post by: Konstantinos on July 11, 2005, 11:41:50 am
it didnt work it is still there
Title: Re: remove the graphick (or whatever that is)
Post by: Joachim Müller on July 12, 2005, 10:57:48 am
link?