Titre Catégorie

As_Moderateur à 03h41
16
Aug
2011
Bonjour, je sais et j'en suis navré, que mon problème à sans douté été évoqué plusieurs fois voir même résolu, mais ne connaissant pas l’appellation exacte de celui ci je n'arrive pas a trouver la solution dans le mode recherche.

j'explique mon souci.

J'ai un forum en Phpbb2 et je souhaiterai pouvoir retirer le titre apparant sur mes catégorie mais qu'ils restent visible dans mon panneau administrateur ex :

j'ai ceci :

Spoiler:


et je voudrais ce résultat :

Spoiler:
retirer celui interieur au cadre (transformer par la meme occasion l'image en lien).

avoir le nom dans le panneau administrateur apparant.


merci et encore navré.
1 Macema, le 16/08/2011 à 03h44
Bonsoir,

avez-vous déjà modifié votre template index_box ? Si oui me le fournir.

Cordialement.
2 As_Moderateur, le 16/08/2011 à 03h45
oui effectivement je l'ai modifié, le voici :

Spoiler:
Code:
<table width="100%" border="0" cellspacing="1" cellpadding="0" align="center">
   
<script type="text/javascript">var num= 0;</script>
<!-- BEGIN catrow --><!-- BEGIN tablehead --><table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
  <tr id="currenttr" onClick="i= 0; e=this.parentNode.childNodes; while(++i<e.length) if(e[i].tagName=='TR') e[i].style.display=(e[i].style.display=='none')?'':'none'; retour=(my_getcookie(this.id)=='true')?'false':'true'; my_setcookie(this.id,retour, 1, 0);"  style="cursor:pointer;">
      <th colspan="{catrow.tablehead.INC_SPAN}" nowrap="nowrap" width="100%" class="secondarytitle"> {catrow.tablehead.L_FORUM} </th>
      <th nowrap="nowrap" width="50">{L_TOPICS}</th>
      <th nowrap="nowrap" width="50">{L_POSTS}</th>
      <th nowrap="nowrap" width="150"><div style="width:150px;">{L_LASTPOST}</div></th>
   </tr>
   <!-- END tablehead -->
   <!-- BEGIN cathead -->
   <tr>
      <!-- BEGIN inc -->
      <td class="{catrow.cathead.inc.INC_CLASS}" width="46"><img src="{SPACER}" height="0" width="46" /></td>
      <!-- END inc -->
      <td class="{catrow.cathead.CLASS_CAT}" colspan="{catrow.cathead.INC_SPAN}" width="100%">
         <h{catrow.cathead.LEVEL} class="hierarchy">
            <span class="cattitle">
               <a class="cattitle" title="{catrow.cathead.CAT_DESC}" href="{catrow.cathead.U_VIEWCAT}">{catrow.cathead.CAT_TITLE}</a>
            </span>
         </h{catrow.cathead.LEVEL}>
      </td>
      <td class="{catrow.cathead.CLASS_ROWPIC}" colspan="3" align="right"> </td>
   </tr>
   <!-- END cathead -->
   <!-- BEGIN forumrow -->
   <tr>
      <!-- BEGIN inc -->
      <td class="{catrow.forumrow.inc.INC_CLASS}" width="46"><img src="{SPACER}" height="0" width="46" alt="." /></td>
      <!-- END inc -->
      <td class="{catrow.forumrow.INC_CLASS}" align="center" valign="middle">
         <img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
      </td>
      <td class="row1 over" colspan="{catrow.forumrow.INC_SPAN}" valign="top" width="100%" height="50">
         <h{catrow.forumrow.LEVEL} class="hierarchy">
            <span class="forumlink">
               <a class="forumlink" href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a><br />
            </span>
         </h{catrow.forumrow.LEVEL}>
         <span class="genmed">{catrow.forumrow.FORUM_DESC}</span>
         <span class="gensmall">
            <!-- BEGIN switch_moderators_links -->
            {catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
            <!-- END switch_moderators_links -->
            {catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
         </span>
      </td>
      <td class="row3" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.TOPICS}</span>
      </td>
      <td class="row2" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.POSTS}</span>
      </td>
      <td class="row3 over" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.LAST_POST}</span>
      </td>
   </tr>
   <!-- END forumrow -->
   <!-- BEGIN catfoot -->
   <tr>
      <!-- BEGIN inc -->
      <td class="{catrow.catfoot.inc.INC_CLASS}" width="46"><img src="{SPACER}" height="0" width="46" /></td>
      <!-- END inc -->
      <td class="spaceRow" colspan="{catrow.catfoot.INC_SPAN}" height="1"><img src="{SPACER}" alt="" height="1" width="1" /></td>
   </tr>
   <!-- END catfoot -->
   <!-- BEGIN tablefoot -->
</table><script type="text/javascript"> document.getElementById('currenttr').id='trfrm'+num; if(my_getcookie('trfrm'+num)=='true') { i= 0; e=document.getElementById('trfrm'+num).parentNode.childNodes; while(++i<e.length) if(e[i].tagName=='TR')e[i].style.display='none'; } num++;</script><img src="{SPACER}" alt="" height="5" width="1" /><!-- END tablefoot --><!-- END catrow -->


merci.
3 Macema, le 16/08/2011 à 03h49
Repérez ceci :

Code:
<h{catrow.forumrow.LEVEL} class="hierarchy">
            <span class="forumlink">
              <a class="forumlink" href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a><br />
            </span>
        </h{catrow.forumrow.LEVEL}>
        <span class="genmed">{catrow.forumrow.FORUM_DESC}</span>


et changez le ainsi :

Code:
<br/>    <span class="genmed"><span class="forumlink">
              <a class="forumlink" href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_DESC}</a></span></span>
4 As_Moderateur, le 16/08/2011 à 03h52
c'est exactement se que je voulais ! merci beaucoup.
Sujets similaires
Bonjour, Excusez-moi de vous déranger mais en étant en plein changement de forum, j'ai pas mal de problème au niveau de la structure du forum. Voici le lien: http://lgdc-r-p-g.forumgratuit.be/forum J'ai donc suivi ce sujet-là, j'ai eu de très bo
Bonjour Je n'arrive pas à changer la couleur ou mettre en transaprence les coutours des catégories (je sais pas comment sa s'appelle). Je vous met une photo, la c'est en noir et je voudrais changer la couleur, mais je trouve pas ou sait. Spoiler:
Bonjour, Il y a 1 an et demi de cela j'ai dépanné un ami chez moi pendant 4 mois. A l'époque je touchais les APL et mon frère était à ma charge. En échange de mon service, cette personne s'est engagée à payer une participation aux frais d'environ 300€
Réponses 1 à 4 sur 4 pour "Titre Catégorie"
À voir aussi
more_less
Informations

4 Réponses pour le sujet :
"Titre Catégorie"

Ce sujet a été vu 817 fois.

Dernier message écrit :
16/08/2011 à 03h41 par "As_Moderateur"