Comment changer les titres des forums ?
2 participants
Forum gratuit : Le forum des forums actifs :: Entraide & Support... :: Gérer l'apparence de son forum :: Archives des problèmes avec l'apparence du forum
Page 1 sur 1 • Partagez
Comment changer les titres des forums ?
Bonjour !
Je suis fondatrice d'un forum de rpg, et j'aimerais modifier les titres des forums.
Par exemple, j'aimerais avoir des titres comme ça (pas pour la police, pour la forme et le fond) :
Et lorsque l'on passe le curseur dessus :
Je suppose que c'est possible car j'ai vu un forum comme ça.
Que faut-il modifier,est-ce dans les templates ?
Je suis en version PHB2
Merci beaucoup pour vos éventuelles réponses !
Cordialement,
Efiàltis.
Je suis fondatrice d'un forum de rpg, et j'aimerais modifier les titres des forums.
Par exemple, j'aimerais avoir des titres comme ça (pas pour la police, pour la forme et le fond) :
Et lorsque l'on passe le curseur dessus :
Je suppose que c'est possible car j'ai vu un forum comme ça.
Que faut-il modifier,est-ce dans les templates ?
Je suis en version PHB2
Merci beaucoup pour vos éventuelles réponses !
Cordialement,
Efiàltis.
Dernière édition par Efiàltis le Mar 5 Juil 2011 - 17:59, édité 1 fois
Re: Comment changer les titres des forums ?
Bonjour,
Il s'agit d'un code placé dans la feuile de style CSS de votre forum:
Cordialement.
Il s'agit d'un code placé dans la feuile de style CSS de votre forum:
- Code:
a.forumlink{
display: block;
text-align: center;
background: url('adresse de l'image de fond');
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;}
a.forumlink:hover{
display: block;
text-align: center;
background: url('adresse de l'image de fond');
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;}
Cordialement.
Dernière édition par Isolde le Lun 4 Juil 2011 - 21:05, édité 1 fois
Invité- Invité
Re: Comment changer les titres des forums ?
Merci beaucoup !
Mais n'y-a-t-il pas un moyen pour "ajuster" la longueur des bandes, de façon à ce qu'elles aient la longueur du forum, ou de les centrer ?
Mais n'y-a-t-il pas un moyen pour "ajuster" la longueur des bandes, de façon à ce qu'elles aient la longueur du forum, ou de les centrer ?
Re: Comment changer les titres des forums ?
Normalement elles tiennent toute la largeur, c'est ce qu'est censé faire la propriété "display: block;" . Avez vous modifié votre template Index_box?
Cordialement.
Cordialement.
Invité- Invité
Re: Comment changer les titres des forums ?
Oui, en effet.
Mais en fait (je sais, je suis énervante), on ne peut pas plutôt l'avoir en carré ?
Sinon, voici mon template pour que ça fasse toute la longueur :
Cordialement.
Mais en fait (je sais, je suis énervante), on ne peut pas plutôt l'avoir en carré ?
Sinon, voici mon template pour que ça fasse toute la longueur :
- Code:
{JAVASCRIPT}
<!-- BEGIN message_admin_index -->
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<!-- BEGIN message_admin_titre -->
<tr>
<td class="catHead" height="28"><span class="cattitle">{message_admin_index.message_admin_titre.MES_TITRE}</span></td>
</tr>
<!-- END message_admin_titre -->
<!-- BEGIN message_admin_txt -->
<tr>
<td class="row1" rowspan="3" align="center" valign="middle">
<div class="gensmall">{message_admin_index.message_admin_txt.MES_TXT}</div>
</td>
</tr>
<!-- END message_admin_txt -->
</table>
<!-- END message_admin_index -->
<!-- BEGIN switch_user_login_form_header -->
<form action="{S_LOGIN_ACTION}" method="post" name="form_login">
<!-- BEGIN switch_fb_connect_no -->
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
<tr>
<td class="row1" align="center">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><span class="genmed">{L_USERNAME}:</span> </td>
<td><input class="post" type="text" size="10" name="username"/> </td>
<td>
<input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
<span class="gensmall">{L_AUTO_LOGIN}</span>
</td>
</tr>
<tr>
<td><span class="genmed">{L_PASSWORD}:</span> </td>
<td><input class="post" type="password" size="10" name="password"/> </td>
<td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END switch_fb_connect_no -->
<!-- BEGIN switch_fb_connect -->
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
<tr>
<td valign="top" width="100%" class="row1" align="center">
<table width="100%">
<tr>
<td width="55%" valign="middle" align="right">
<table class="right">
<tr>
<td><span class="genmed">{L_USERNAME}:</span> </td>
<td><input class="post" type="text" size="10" name="username"/> </td>
<td>
<input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
<span class="gensmall">{L_AUTO_LOGIN}</span>
</td>
</tr>
<tr>
<td><span class="genmed">{L_PASSWORD}:</span> </td>
<td><input class="post" type="password" size="10" name="password"/> </td>
<td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
</tr>
</table>
</td>
<td width="10%" align="center" valign="middle">
<span class="genmed fb_or">{switch_user_login_form_header.switch_fb_connect.L_OR}</span>
</td>
<td width="35%" class="align_gauche"><fb:login-button size="large" onlogin="window.location='/facebook_connect.forum'" v="2" perms="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_header.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END switch_fb_connect -->
</form>
<!-- END switch_user_login_form_header -->
{CHATBOX_TOP}
{BOARD_INDEX}
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" valign="top">
<!-- BEGIN switch_user_logged_in -->
<span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_delete_cookies -->
<br /><a href="{switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_delete_cookies.L_DELETE_COOKIES}</a>
<!-- END switch_delete_cookies -->
</span>
</td>
<td width="50%" align="right">
<span class="gensmall">
<a href="{U_TODAY_ACTIVE}" class="gensmall">{L_TODAY_ACTIVE}</a><br />
<a href="{U_TODAY_POSTERS}" class="gensmall">{L_TODAY_POSTERS}</a><br />
<a href="{U_OVERALL_POSTERS}" class="gensmall">{L_OVERALL_POSTERS}</a>
<!-- BEGIN switch_on_index -->
<!-- BEGIN switch_delete_cookies -->
<br /><a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a>
<!-- END switch_delete_cookies -->
<!-- END switch_on_index -->
</span>
</td>
</tr>
</table>
<!-- BEGIN switch_user_login_form_footer -->
<form action="{S_LOGIN_ACTION}" method="post" name="form_login">
<!-- BEGIN switch_fb_connect_no -->
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
<tr>
<td class="row1" align="center">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><span class="genmed">{L_USERNAME}:</span> </td>
<td><input class="post" type="text" size="10" name="username"/> </td>
<td>
<input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
<span class="gensmall">{L_AUTO_LOGIN}</span>
</td>
</tr>
<tr>
<td><span class="genmed">{L_PASSWORD}:</span> </td>
<td><input class="post" type="password" size="10" name="password"/> </td>
<td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END switch_fb_connect_no -->
<!-- BEGIN switch_fb_connect -->
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
<tr>
<td valign="top" width="100%" class="row1" align="center">
<table width="100%">
<tr>
<td width="55%" valign="middle">
<table class="right">
<tr>
<td><span class="genmed">{L_USERNAME}:</span> </td>
<td><input class="post" type="text" size="10" name="username"/> </td>
<td>
<input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
<span class="gensmall">{L_AUTO_LOGIN}</span>
</td>
</tr>
<tr>
<td><span class="genmed">{L_PASSWORD}:</span> </td>
<td><input class="post" type="password" size="10" name="password"/> </td>
<td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
</tr>
</table>
</td>
<td width="10%" align="center" valign="middle">
<span class="genmed fb_or">{switch_user_login_form_footer.switch_fb_connect.L_OR}</span>
</td>
<td width="35%" class="align_gauche"><fb:login-button size="large" onlogin="window.location='/facebook_connect.forum'" v="2" perms="{switch_user_login_form_footer.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_footer.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END switch_fb_connect -->
</form>
<!-- END switch_user_login_form_footer --><br>
<!-- BEGIN disable_viewonline -->
<table class="qeel" width="100%"><tr><td align="left" width="290px"><img src=" http://i26.servimg.com/u/f26/11/56/41/47/quiest10.png">
</td><td valign="top"><ul><center>
<font color=" #000000" size="3">|</font><span class="groupes"><a href="http://warriorslgdc.forumactif.fr/g3-tribu-de-l-eau-vive "><font color="#4D7E94" size="3"> Tribu de l’Eau Vive </font><font color=" #000000" size="3">| </font></a></span>
<span class="groupes"><a href="http://warriorslgdc.forumactif.fr/g4-tribu-de-la-lune-montante"><font color="#4C2E52" size="3">Tribu de la Lune Montante </font><font color="#000000" size="3">| </font></a></span>
<span class="groupes"><a href="http://warriorslgdc.forumactif.fr/g5-chats-errants"><font color="#898F74" size="3">Chats Errants </font><font color="#000000" size="3">| </font></a></span>
<BR>
<span class="groupes"><a href="http://warriorslgdc.forumactif.fr/g6-tribu-de-la-chasse-eternelle "><font color="#4D4E52" size="3">Tribu de la Chasse Eternelle </font><font color="#000000 " size="3"></font></a></span>
<br /><br /><br />
<span class="gensmall">{TOTAL_POSTS}
<br />
{TOTAL_USERS}
<br /><br />
{NEWEST_USER}</span>
<br /><br />
<span class="gensmall">{TOTAL_USERS_ONLINE}
<br /> {LOGGED_IN_USER_LIST}
<br /><br />
{RECORD_USERS}
<br />
</span>
<br />
<br />
<table>{L_CONNECTED_MEMBERS}</table></ul>
</table>
<!-- END disable_viewonline -->
{CHATBOX_BOTTOM}
<br clear="all" />
<br><br>
{AUTO_DST}
<!-- BEGIN switch_fb_index_login -->
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({
appId: '{switch_fb_index_login.FACEBOOK_APP_ID}',
status: true,
cookie: true,
xfbml: true
});
//]]>
</script>
<!-- END switch_fb_index_login -->
Cordialement.
Re: Comment changer les titres des forums ?
EDIT: après la réponse d'Isolde je comprend mieux pourquoi cela ne va pas^^
Dernière édition par Vicsius le Mar 5 Juil 2011 - 12:31, édité 1 fois
Re: Comment changer les titres des forums ?
Bonjour,
Vous m'avez donné l'Index_body, c'est l'index_box qu'il me faut . Pour faire des cadres carrés, il suffit de retirer du CSS ce qui crée les arrondis: les 3 lignes contenant le mot "radius".
Cordialement.
Vous m'avez donné l'Index_body, c'est l'index_box qu'il me faut . Pour faire des cadres carrés, il suffit de retirer du CSS ce qui crée les arrondis: les 3 lignes contenant le mot "radius".
Cordialement.
Invité- Invité
Re: Comment changer les titres des forums ?
Oups, je suis désolée. Merci pour le truc des carrés, ça va faire mieux.
Voici le bon template cette fois :
Cordialement.
Voici le bon template cette fois :
- 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}<br />
{CURRENT_TIME}<br />
</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><br />
<a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
<!-- 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: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">
<table width="100%"><tbody><tr><td><h{catrow.forumrow.LEVEL} class="hierarchy">
<span class="forumlink">
<a class="forumlink" href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a>
</span>
</h{catrow.forumrow.LEVEL}></td><td style="padding-left: 40px; text-align: right;" class="gensmall">{catrow.forumrow.POSTS} messages dans {catrow.forumrow.TOPICS} sujets.</td></tr></tbody></table>
<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 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 -->
Cordialement.
Re: Comment changer les titres des forums ?
Essayez avec ce template Index_box.
Cordialement
- 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}<br />
{CURRENT_TIME}<br />
</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><br />
<a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
<!-- 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: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>
</span>
</h{catrow.forumrow.LEVEL}>
<table width="100%"><tbody><tr><td></td><td style="padding-left: 10px; text-align: right;width: 160px;" class="gensmall">{catrow.forumrow.POSTS} messages dans {catrow.forumrow.TOPICS} sujets.</td></tr></tbody></table>
<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 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 -->
Cordialement
Invité- Invité
Re: Comment changer les titres des forums ?
Merci beaucoup !
Mais en mettant le CSS, il y avait écrit : Erreur, nous avons constaté qu'il y avait beaucoup de "{" et de "[", votre code risque d'être invalide.
Et en effet, ça ne change rien.
Et aussi, j'ai une autre question sur des codes, je peux poster ici ou je dois ouvrir un autre sujet ?
Cordialement.
Mais en mettant le CSS, il y avait écrit : Erreur, nous avons constaté qu'il y avait beaucoup de "{" et de "[", votre code risque d'être invalide.
Et en effet, ça ne change rien.
Et aussi, j'ai une autre question sur des codes, je peux poster ici ou je dois ouvrir un autre sujet ?
Cordialement.
Re: Comment changer les titres des forums ?
Il y a surement une faute qui s'est glissée dans le CSS, je vous le donne de nouveau:
Si votre question concerne autre chose les titres des forums, alors il faut ouvrir un nouveau sujet pour faciliter les recherches ultérieures .
Cordialement.
- Code:
a.forumlink{
display: block;
text-align: center;
background: url('adresse image de fond');}
a.forumlink:hover{
display: block;
text-align: center;
background: url('adresse image de fond');}
Si votre question concerne autre chose les titres des forums, alors il faut ouvrir un nouveau sujet pour faciliter les recherches ultérieures .
Cordialement.
Invité- Invité
Re: Comment changer les titres des forums ?
Ça marche ! Merci beaucoup !
Je vais poster ailleurs et merci beaucoup pour votre aide !
Je vais poster ailleurs et merci beaucoup pour votre aide !
Sujets similaires
» changer la couleur des titres de catégories/forums ?
» Changer la taille et la police des titres des forums.
» Changer la police des titres des cotégories et sous-forums
» Comment retirer les titres des forums?
» Comment retirer les titres des forums ?
» Changer la taille et la police des titres des forums.
» Changer la police des titres des cotégories et sous-forums
» Comment retirer les titres des forums?
» Comment retirer les titres des forums ?
Forum gratuit : Le forum des forums actifs :: Entraide & Support... :: Gérer l'apparence de son forum :: Archives des problèmes avec l'apparence du forum
Page 1 sur 1
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum