CSSActif, le forum, n'est plus maintenu. Il est néanmoins disponible pour consultation. Pour des outils pratiques, rendez-vous sur: Découvrez CSSActif, une collection d'outils et de tutoriels interactifs pour les développeurs Web — HTML, CSS, JavaScript et bien plus! |
| Espacer les noms des sous forums | |
| The Clockwork Hedgehog
{ Membre }
Messages : 11
| Bonjour, J'aimerais sur ce forum: http://cat-warriors-2.forumsactifs.com/ mettre des espaces entre les noms des sous forums, car j'ai enlevé les virgules, mais depuis, c'est tout collé, et je n'arrive pas à espacer. En suivant un tuto j'avais modifié le template 'index box' afin donc d'enlever les virgules, ce template donne à présent ceci: - Code:
-
<table width="100%" border="0" cellspacing="1" cellpadding="0" align="center"> <tr> <td valign="bottom"> <!-- BEGIN switch_user_logged_in --> <span class="gensmall">{LAST_VISIT_DATE}
{CURRENT_TIME}
</span> <!-- END switch_user_logged_in --> <div class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</div> </td> <td class="gensmall" align="right" valign="bottom"> <!-- BEGIN switch_user_logged_in --> <a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a>
<a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a>
<!-- END switch_user_logged_in --> <a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> <!-- 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="150"><div style="width:170px;">{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"> <table width="100%"><tr><td width="55%" valign="top"><a class="forumlink" href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></td><td width="45%" align="right" valign="top"><span class="gensmall"><div class="bawahbawah"><span style="font-size: 11px; text-align:center;">Contient <strong>{catrow.forumrow.POSTS}</strong> messages dans <strong>{catrow.forumrow.TOPICS}</strong> sujets</span></div> </td></tr></table> </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 --> <div class="gloubiboulga">{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}</div> </span> </td> </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><img src="{SPACER}" alt="" height="5" width="1" /><!-- END tablefoot --><!-- END catrow --> Donc si quelqu'un a une solution? Merci d'avance. | | |
| | | Haribot' ♪
{ Membre hyper-actif }
Messages : 5163
| Coucou! Tu peux me montrer le code que tu as mis (code Javascript) pour supprimer la virgule s'il-te-plaît ? Merci. | | |
| | | The Clockwork Hedgehog
{ Membre }
Messages : 11
| Bonjour, voici ce que ça donne: dans 'index box': - Citation :
{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
[...]
$('.gloubiboulga').each(function(){$(this).html($(this).html().replace(/,/g," "));}); J'avais vu ça dans un tuto, mais bon, ça ne fait que supprimer la virgule, ça ne met pas d'espace à la place... Merci (: | | |
| | | 'Christa
Lostmindy
Messages : 2856
| Le replace(/,/g," "), mets plus d'espace entre les guillemets, pour voir ? Sinon une autre méthode serait de faire ça : - Code:
-
.gloubiboulga a { display:inline-block; /* on transforme les liens des sous forums en blocs inline */ padding : 0px 5px; /*on met 5px d'espacement à droite et à gauche */ } Ca marcherait aussi avec margin:0px 5px;. Ah, et le premier chiffre, c'est l'espacement en haut et en bas, et le second, c'est l'espacement à droite et à gauche. | | |
| | | The Clockwork Hedgehog
{ Membre }
Messages : 11
| *o*! La seconde technique marche! Merci beaucoup! (pour la première j'avais déjà essayé y'a un bout de temps, sans résultat... ) | | |
| | | 'Christa
Lostmindy
Messages : 2856
| De rien Et je profite éhontément de mes nouveaux super pouvoirs pour classer la demande \o/ | | |
| | | Contenu sponsorisé
| | | | | Espacer les noms des sous forums | |
|
Sujets similaires | |
|
| Permission de ce forum: | Vous ne pouvez pas répondre aux sujets dans ce forum
| |
| |
| |
|
| Partenaires Or
|
|