Changer la bannière du thème Mac ox x Changer la bannière du thème Mac ox x
 

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

Changer la bannière du thème Mac ox x

Started by jade_sky, November 15, 2007, 03:51:57 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

jade_sky

Bonjour,

je souhaite changer la bannière du thème Mac ox x, mais ce n'est pas évident.
Où peut-on la supprimer pour y mettre une autre ?
Faut-il supprimer aussi des éléments, dans la feuille de style css ?
Ma gallery : http://fullartworkpanic.free.fr/galerie

Pascal YAP

#1
Bonjour,

Ce sont ces images que vous voulez changer ?
(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Ffullartworkpanic.free.fr%2Fgalerie%2Fthemes%2Fmac_ox_x%2Fimages%2Ftop_panel_r1_c1b.gif&hash=530a99fa7cbffad45bb42d110d1da7baaee62f36)
http://fullartworkpanic.free.fr/galerie/themes/mac_ox_x/images/top_panel_r1_c1b.gif

(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Ffullartworkpanic.free.fr%2Fgalerie%2Fthemes%2Fmac_ox_x%2Fimages%2Ftop_panel_r1_c2.jpg&hash=fbf23e53e3716844da3153d3e2a2d1242c85cb04)
http://fullartworkpanic.free.fr/galerie/themes/mac_ox_x/images/top_panel_r1_c2.jpg

Vérifiez les dimensions de ces images, et produisez les votre que vous nommerez de la même façon, ça va vous évitez d'éditer des fichiers.
Si vous utilisez le navigateur Firefox, utilisez aussi le plugin WebDeveloper et vous allez deshabiller tous les web  ;D

PYAP

jade_sky


jade_sky

En fait, si l'on veut changer la bannière de ce thème, on peut aller dans la css, et modifier 3 niveaux:

.top_panel {
        background-image: url(images/top_panel_r1_c1b.gif);
        background-repeat: no-repeat;
        background-color: #FFFFFF;
        background-position: left;
}

.top_panel_r {
        background-image:url(images/top_panel_r1_c2.jpg);
        background-repeat:no-repeat;
        background-position:right;
}


par ça par exemple:

.top_panel {
        background-image: url(images/ma_nouvelle_bannière.jpg);
        background-repeat: no-repeat;
        background-color: #FFFFFF;
        background-position: left;
}

.top_panel_r {
        background-repeat:no-repeat;
        background-position:right;
}


Et si la hauteur de la bannière est supérieur à 65x, il faut modifier:

#GAL_NAME {
          width:400px;
          height: 65px;
          margin-left: auto;
          margin-right: auto;
          text-align: center;
}


par ça par exemple :

#GAL_NAME {
          width:400px;
          height: 200px;
          margin-left: auto;
          margin-right: auto;
          text-align: center;
}


Les dimensions de ma bannière sont de 1263 X 200 pixel.

Pascal YAP

jade_sky,

Merci pour vos précisions qui seront utiles à d'autres Aficionados de Coppermine  ;)

PYAP