Bonjour,
Je me permets ce message car après un bon nombre d'essais et pas mal de recherche, je n'arrive pas à obtenir ce que je souhaite. Voici ce que j'aimerais obtenir : https://2img.net/h/oi45.tinypic.com/2vltbio.png.
C'est-à-dire placer la liste des modérateurs dessous les liens des sous-forums et totalement à droite de la cellule des descriptions des forums. Seulement je n'y arrive pas. J'ai bien compris qu'il s'agissait d'un élément du template
index_box, à savoir :
- Code:
-
<!-- BEGIN switch_moderators_links -->
{catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
<!-- END switch_moderators_links -->
Qui se trouve en cet endroit du template :
- Code:
-
<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">
{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
<!-- BEGIN switch_moderators_links -->
<br><span class="modos" text-align="right">{catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}</span>
<!-- END switch_moderators_links --></span>
</td>
Je l'ai donc déplacé et encadré d'une class, à laquelle j'essaie d'attribuer l'alignement à droite, comme ceci :
- Code:
-
<span class="gensmall">
{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
<!-- BEGIN switch_moderators_links -->
<br><span class="modos">{catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}</span>
<!-- END switch_moderators_links --></span>
Avec comme CSS :
- Code:
-
.modos
{align:right;}
J'ai également essayé avec text-align, align="right" à même le template ou avec des balises < right > mais rien à faire... Donc si jamais quelqu'un connaissait la solution, cela m'arrangerait bien, je suis à court d'idée là ^^ !