coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: DaBe on April 22, 2007, 02:58:07 PM

Title: img navbar under image
Post by: DaBe on April 22, 2007, 02:58:07 PM
Hello

I want display the img-navbar under the image? but how I can make that? in which file? I have try in the themes.inc but i dont know..
Title: Re: img navbar under image
Post by: Stramm on April 22, 2007, 07:25:57 PM
from themes/ample/theme.php copy the function theme_display_image into the theme.php you're actually using. Find
    starttable();
    echo $nav_menu;
    endtable();

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


and replace with
    starttable();
    echo $picture;
    endtable();

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