forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: Fly0770 on March 04, 2011, 04:17:33 am

Title: Customizing Film Strip
Post by: Fly0770 on March 04, 2011, 04:17:33 am
I have 3 issues with setting up Film Strip at my Coppermine Gallery can be found here: http://www.2flyproductions.com/Showcase.html

#1 - Is there a way to remove the black "strip" portions on the top and bottom of the thumbnails images on the bottom?

#2 - When selecting a set of images to view, when you click the the album, I would like the film strip to load from there.  Instead it shows me a list of thumbails, and you must select one of them to then launch the film strips.  I would like to avoid the intermediate step all together.

#3 - Is it possible to blur all the thumbnails other than the image being viewed?

Thanks in advance!

-MJ
Title: Re: Customizing Film Strip
Post by: Αndré on March 04, 2011, 12:05:34 pm
I have 3 issues
http://forum.coppermine-gallery.net/index.php/topic,55415.msg270618.html#msg270618

#1 - Is there a way to remove the black "strip" portions on the top and bottom of the thumbnails images on the bottom?
Copy this to your the theme.php file of your theme:
Code: [Select]
/******************************************************************************
** Section <<<$template_film_strip>>> - START
******************************************************************************/
// HTML template for filmstrip display
$template_film_strip = <<<EOT

        <tr>
          <td valign="bottom" class="thumbnails filmstrip_background" align="center" style="{THUMB_TD_STYLE}">
            <table width="100%" cellspacing="0" cellpadding="3" border="0">
                <tr>
                   <td width="50%" class="prev_strip"></td>
                     <td valign="bottom"  style="{THUMB_TD_STYLE}">
                       <div id="film" style="{SET_WIDTH}"><table class="tape" ><tr>{THUMB_STRIP}</tr></table></div>
                     </td>
                   <td width="50%" align="right" class="next_strip"></td>
                </tr>
            </table>
          </td>
        </tr>
<!-- BEGIN thumb_cell -->
                <td class="thumb" >
                  <a href="{LINK_TGT}" class="thumbLink" style="{ONE_WIDTH}">{THUMB}</a>
                </td>
<!-- END thumb_cell -->
<!-- BEGIN empty_cell -->
                <td valign="top" align="center" >&nbsp;</td>
<!-- END empty_cell -->

EOT;
/******************************************************************************
** Section <<<$template_film_strip>>> - END
******************************************************************************/
(not tested).


Please start new threads for your other issues while using a meaningful subject line (http://forum.coppermine-gallery.net/index.php/topic,55415.msg270613.html#msg270613).