coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: marpessa on March 07, 2009, 02:19:15 PM

Title: Cannot position the image in the middle?
Post by: marpessa on March 07, 2009, 02:19:15 PM
It's driving me insane, I cant align the intermediate image in the middle. Please help?

http://katieholmes.com/gallery/displayimage.php?album=lastup&cat=0&pos=4
Title: Re: Cannot position the image in the middle?
Post by: Hein Traag on March 07, 2009, 04:39:37 PM
Ed themes/yourtheme/theme.php, find$template_display_mediaand modify the section as you see fit. If you don't have that section in your custom theme, copy// 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;
from themes/sample/theme.php into a new line before?>of the file themes/yourtheme/theme.php and then edit as suggested above.
Title: Re: Cannot position the image in the middle?
Post by: marpessa on March 07, 2009, 04:43:04 PM
Thanks for thr quick reply. I just did that and it didnt work :(
Title: Re: Cannot position the image in the middle?
Post by: Joachim Müller on March 08, 2009, 11:57:28 AM
Post your changes instead of just saying "didn't work". In fact, the term "didn't work" doesn't mean anything nor does it help us in helping you. Ideally, zip up your custom theme folder and attach the zip to your next posting.