Banniere sur coppermine Banniere sur coppermine
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Banniere sur coppermine

Started by blockbuster3, January 26, 2007, 12:29:52 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

blockbuster3

Bonjour a tous,

Voila j'aurai voulut savoir comment mettre une banniére pub comme sur le screen

(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fimg99.imageshack.us%2Fimg99%2F3182%2Fscreen8zk.png&hash=7d76118406220b9b7e58a98f30a16d1e814dcd1f)


Merci d'avance  :)

François Keller

Bonjour,

copiez le code ci dessous dans votre fichier theme.php (celui de votre theme)
et modifiez le pour permettre l'affichage de la bannière
// HTML template for intermediate image display
if (!isset($template_display_media))  //{THEMES}
$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;

Ce code est pris dans le fichier theme.php du theme sample. Vous trouverez aussi ce code dans le fichier theme.inc.php mais il ne faut pas le modifier directement dans ce fichier.
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

blockbuster3

Merci beaucoup frantz sa marche. Probleme reglé ;)

Davide Renda