Bonjour,
Il s'agit de Widgets ou sinon, l'administrateur a modifié le code de son forum.
Je m'explique.
Tes forums et sous-forum sont contenus dans un tableau eux-mêmes dans un cadre (le contour si tu veux). Et bien dans ce contour tu peux désigner un objet qui se calera à gauche du forum. ça évite les publicités des widgets et c'est personnalisable à l'extrême avec un peu de css et compagnie.
Il faut donc modifier le template (FA en phpBB2 par exemple)
Dans le template nommé "index-box" tu as ce qui correspond au tableau des "forums et catégories" :
- Spoiler:
- Code:
<!-- BEGIN catrow --><!-- BEGIN tablehead --><table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<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>
<!-- 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>
Juste avant ce code tu peux ajouter une :
- Code:
<div class="NOM">contenu de ta colonne</div>
Dans la feuille de style (le CSS) tu n'aurais qu'à désigner une largeur pour ta fameux division et bien évidemment choisir de la positionner à gauche avec un float :
- Code:
.NOM
{
float:left;
width: XXXpx
}
Le code est basique et théorique surtout, je n'ai fais aucun teste, j'imagine qu'en se débrouillant en CSS on peut facilement travailler la structure et l'apparence.
Si tu es moins douée dans ce type de code, ce sera bien moins évident. Il te faudra passer par le CSS pour l'apparence, le BBcode ne fonctionne pas dans les templates.
Et le html croisé CSS directement dans le template, c'est toujours faisable, mais ça t'embrouillerais vite.
Petite note finale :
"NOM" c'est le nom que tu dois donner à la "class" de ta division, et que tu devras reporter dans le CSS pour bien marquer le lien entre les deux. Attention à ne pas confondre avec un ID qui commencerait en CSS par un #.
Enfin, tout dépend si tu souhaites répéter la division plusieurs fois ou si tu veux une seule et unique colonne (en un seul morceau...).
Si besoin de précision, merci de mp ou d'attendre un autre bénévole, je ne passe pas souvent.
J'espère que cela saura t'aider.