forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: pc-doc on September 07, 2004, 12:51:10 am

Title: Move Filmstrip?
Post by: pc-doc on September 07, 2004, 12:51:10 am
I would like to move the filmstrip above the picture. Is that possible and what page would Ihave to modify to accomplish this?

Thanks in advance.
Title: Re: Move Filmstrip?
Post by: skybax on September 07, 2004, 01:09:42 am
move:
Code: [Select]
    if ($CONFIG['display_film_strip'] == 1) {
        echo $film_strip;
    }

above:
Code: [Select]
    starttable();
    echo $picture;
    endtable();

in theme.php

-T