coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: klunstenaar on April 09, 2009, 10:05:37 AM

Title: [Solved]: changing picture description
Post by: klunstenaar on April 09, 2009, 10:05:37 AM
Is it possible to have the description of the pictures, instead of under the picture, above the picture.

Hope someone can tell me if, and where i can do that..

Thxs Kluns~
Title: Re: changing picture description
Post by: Stramm on April 09, 2009, 10:31:30 AM
Are you talking about the intermediate image view? If yes, copy $template_display_media from themes/sample/theme.php into the theme.php you're actually using and modify it accordingly.

// HTML template for intermediate image display
$template_display_media = <<<EOT
        <tr>
                <td align="center" class="display_media" nowrap="nowrap">
                        <table cellspacing="2" cellpadding="0" class="imageborder">
                                <tr>
                                        <td align="center">
                                                {IMAGE}

                                        </td>
                                </tr>
                        </table>
                </td></tr>
                <tr><td>
                                                <table width="100%" cellspacing="2" cellpadding="0" class="tableb">
                                <tr>
                                        <td align="center">

                                                {ADMIN_MENU}
                                        </td>
                                </tr>
                        </table>





<!-- BEGIN img_desc -->
                        <table cellpadding="0" cellspacing="0" class="tableb" width="100%">
<!-- BEGIN title -->
                                <tr>
                                        <td class="tableb"><center><b>
                                                {TITLE}
                                        </b></center></td>
                                </tr>
<!-- END title -->
<!-- BEGIN caption -->
                                <tr>
                                        <td class="tableb"><center>
                                                {CAPTION}
                                        </center></td>
                                </tr>
<!-- END caption -->
                        </table>
<!-- END img_desc -->
                </td>
        </tr>

EOT;
Title: Re: changing picture description
Post by: klunstenaar on April 09, 2009, 09:15:21 PM
Stramm,...Thanx for the really fast and good working support!!!