forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: mr.bena on April 23, 2012, 04:14:11 pm

Title: Filmstrip above Image Navigation Bar
Post by: mr.bena on April 23, 2012, 04:14:11 pm
Hi, I have to place the filmstrip just above the "img_navbar". Could you please help me? I attached the snapshot where exactly I want to place the filmstrip.
Title: Re: Filmstrip above Image Navigation Bar
Post by: mr.bena on April 23, 2012, 04:15:35 pm
Sorry, I forgot to attached.. here it is..
Title: Re: Filmstrip above Image Navigation Bar
Post by: Αndré on April 23, 2012, 04:29:27 pm
Copy the following code block to your theme's theme.php file:
Code: [Select]
/******************************************************************************
** Section <<<theme_display_image>>> - START
******************************************************************************/
function theme_display_image($nav_menu, $picture, $votes, $pic_info, $comments, $film_strip)
{
    global $CONFIG, $LINEBREAK;

    $superCage = Inspekt::makeSuperCage();

    $width = $CONFIG['picture_table_width'];

    echo '<a name="top_display_media"></a>'; // set the navbar-anchor

    if ($CONFIG['display_film_strip'] == 1) {
        echo $film_strip;
    }

    starttable();
    echo $nav_menu;
    endtable();

    starttable();
    echo $picture;
    endtable();

    echo $votes;

    $picinfo = $superCage->cookie->keyExists('picinfo') ? $superCage->cookie->getAlpha('picinfo') : ($CONFIG['display_pic_info'] ? 'block' : 'none');
    echo $LINEBREAK . '<div id="picinfo" style="display: '.str_replace('.gif','.png',$picinfo).';">' . $LINEBREAK;
    starttable();
    echo $pic_info;
    endtable();
    echo '</div>' . $LINEBREAK;

    echo '<a name="comments_top"></a>';
    echo '<div id="comments">' . $LINEBREAK;
        echo $comments;
        echo '</div>' . $LINEBREAK;

}
/******************************************************************************
** Section <<<theme_display_image>>> - END
******************************************************************************/
Title: Re: Filmstrip above Image Navigation Bar
Post by: mr.bena on April 23, 2012, 07:10:00 pm
It works, Andre. Thank you...