Je pense qu'il doit y avoir un problème au niveau du JS, peut être as tu oubliée de l'activer ou quelque chose comme ça ?
Sinon, on peut essayer autrement. Le code JS sert à augmenter la valeur du colspan (nombre de colonne que va prendre une cellule) pour que la barre prenne bien toute la largeur
1 / Repère cette partie là
- Code:
-
<tr>
<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>
Ce qui nous intéresse est au début, c'est le
colspan="{catrow.tablehead.INC_SPAN}" . On va le remplacer par une valeur directement, on va essayer avec 3 (ton tableau a 3 colonnes : Icones / Description forum / Lien vers le dernier message).
Cela devrait donc donner :
- Code:
-
<tr>
<th colspan="3" 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>
Dis moi si cela règle ton problème
Attention, si tu choisis cette méthode là (modification du template), il faut que tu enlèves le code javascript du tuto