Suppression cadre blanc theme Chaoticsoul Suppression cadre blanc theme Chaoticsoul
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Suppression cadre blanc theme Chaoticsoul

Started by karice, December 14, 2007, 02:23:09 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

karice

Bonjour,

j'aimerai supprimer le cadre blanc qui est généré autour des photos intermédiaires dans le theme Chaoticsoul.

merci d'avance.

Fabrice.

www.fhenon.123.fr
www.fhoto.new.fr

François Keller

salut

à mon, avis c'est du coté du code ci dessous (theme.php du theme) qu'il faut regarder
// HTML template for intermediate image display
$template_display_media = <<<EOT
   <tr>
     <td align="center" class="display_media" nowrap="nowrap">
       <table cellspacing="0" cellpadding="0" class="imageborder">
         <tr>                                                                             
           <td><img src="./themes/chaoticsoul/images/frame/UL.gif" ></td>
           <td background="./themes/chaoticsoul/images/frame/Top.gif"></td>
           <td><img src="./themes/chaoticsoul/images/frame/UR.gif" ></td>
</tr>
         <tr>
           <td background="./themes/chaoticsoul/images/frame/LS.gif"></td>   
           <td>                       
             {IMAGE}
           </td>
           <td background="./themes/chaoticsoul/images/frame/RS.gif"></td>               
         </tr>
         <tr>
           <td><img src="./themes/chaoticsoul/images/frame/LL.gif"></td>
           <td background="./themes/chaoticsoul/images/frame/Bottom.gif"></td>
           <td><img src="./themes/chaoticsoul/images/frame/LR.gif"></td>
         </tr>
       </table>
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

karice

et je fais quoi ?

parce que j'y connais rien moi  :(

j'avais cru lire quelque part que c'était une modif sur le script d'origine

Pascal YAP

C'est à dire qu'il scruter un peu le script THEME.PHP et déterminer où se situe ce que vous voulez modifier.
Pour ce faire il quelques petits rudiments en HTML. Si la curiosité fait partie de vos qualités, vous trouverez vite  ;D

PYAP

François Keller

remplace le code donné plus haut par
// HTML template for intermediate image display
$template_display_media = <<<EOT
   <tr>
     <td align="center" class="display_media" nowrap="nowrap">
       <table cellspacing="0" cellpadding="0" class="imageborder">
        <!-- <tr>                                                                             
           <td><img src="./themes/chaoticsoul/images/frame/UL.gif" ></td>
           <td background="./themes/chaoticsoul/images/frame/Top.gif"></td>
           <td><img src="./themes/chaoticsoul/images/frame/UR.gif" ></td>
</tr> -->
         <tr>
           <!-- <td background="./themes/chaoticsoul/images/frame/LS.gif"></td> -->   
           <td>                       
             {IMAGE}
           </td>
         <!--  <td background="./themes/chaoticsoul/images/frame/RS.gif"></td>    -->           
         </tr>
       <!--  <tr>
           <td><img src="./themes/chaoticsoul/images/frame/LL.gif"></td>
           <td background="./themes/chaoticsoul/images/frame/Bottom.gif"></td>
           <td><img src="./themes/chaoticsoul/images/frame/LR.gif"></td>
         </tr> -->
       </table>
     </td>
   </tr>
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

karice


François Keller

pas de quoi.

c'est du html simple, donc pas de problèmes pour mettre en commentaire ce que l'on ne veut pas :)
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