| Catégories en onglet : Mettre les statistiques dans un cadre de taille fixe [terminé] | |
|
Noham
{ Membre }
Messages : 27
| Bonjour ! En premier lieu, je tiens à remercier par avance les personnes qui prendront le temps de lire ma question et d'y répondre. Comme l'indique mon titre, j'aimerai, suite aux explications et codes proposés par Iowan, personnaliser la présentation des statistique en les plaçant dans un cadre. Je n'ai rencontré aucune difficulté pour le faire mais voici le résultat sur mon forum de teste (je préfère essayer à côté plutôt que de causer une gêne pour les membres) : Je cherche comment imposer une taille à ce cadre car, comme vous pouvez le remarquer à ma seconde capture, lorsque le descriptif est long, le cadre l'est également autour des statistiques. Sauriez-vous comment faire ? Je précise que je suis sur FireFox, que mon forum est en phpBB2. |
Dernière édition par Noham le Dim 28 Mar 2010, 18:03, édité 1 fois | |
|
| |
Invité Invité
| Coucou, Je ne suis pas très douée mais peut-être tu peux rajouter - Code:
-
height:...px; dans le CSS où il y a les statistiques. Si ce n'est pas un code CSS, tu peux créer une classe. Dans ton CSS : - Code:
-
.nomdelaclass { height:...px; }
et dans ton code HTML avec les statistiques, tu mets - Code:
-
<div class="nomdelaclass">le code HTML</div> | | |
|
| |
Noham
{ Membre }
Messages : 27
| Bonjour ! J'ai suivis vos conseils de la manière suivante dans mon template : - Code:
-
<td class="my_stats" width="200" height:"100" valign="top" > Concernant le CSS j'avais déjà essayé ainsi : - Code:
-
.my_stats{ font-size: 10px; width: 100px; text-align:center; } Mais visiblement, ça ne fonctionne pas, il doit y avoir quelque chose que je fais mal | | |
|
| |
Kiwi
{ Membre }
Messages : 142
| Salut ! Il y a une petite erreur =) Il faut un "=" et non un ":" en HTML ^^ - Code:
-
<td class="my_stats" width="200" height="100" valign="top" > Et puis, faut noter que ce n'est pas logique =) Dans le HTML, on indique une largeur à 200 et dans le CSS une largeur à 100? =o Peut-être t'es-tu trompé de propriété css? - Code:
-
.my_stats{ font-size: 10px; height: 100px; text-align:center; } Dans tous les cas, il faut éviter dans la mesure du possible d'avoir des width, height et valign dans le HTML. Teste plutôt ceci ^^ - Code:
-
<td class="my_stats"> et - Code:
-
.my_stats{ font-size: 10px; height: 100px; width:200px; text-align:center; vertical-align:top; } | | |
|
| |
Invité Invité
| Coucou,
Les codes de Iowan m'intéresse mais je ne les trouve pas. Où sont-ils ?
Merci =) | | |
|
| |
Kiwi
{ Membre }
Messages : 142
| Salut, Il se trouve ici | | |
|
| |
Noham
{ Membre }
Messages : 27
| Bonjour ! Vous aviez bien vu concernant mon erreur de chiffre J'ai fait les modifications que vous m'aviez conseillé, mais le résultat n'a pas bougé d'un iota. Voilà mon CSS .stat en entier : - Code:
-
.my_stats{ font-size: 10px; text-align:center; border-bottom:2px double #9FC2D6; border-top: 2px double #9FC2D6; -moz-border-radius: 10px ; border-right: 5px solid #9FC2D6; -moz-border-radius: 10px ; border-left: 5px solid #9FC2D6; height: 100px; width: 200px; background: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); } Quant à mon template, j'ai remplacé la partie concernée par ce que vous m'aviez conseillé^^ | | |
|
| |
Invité Invité
| Je te conseille d'ouvrir une nouvelle classe dans ton CSS, pour ton cadre et sa hauteur. Enlevé le cadre dans "my-stats" des codes d'Iowan. Et mettre ta div class dans tes templates ^^ ( suffit de retrouver la class my_stats xD et l'y ajouter <3 )
C'est comme çça que je m'y suis prise <3
[Résultat ] | | |
|
| |
Noham
{ Membre }
Messages : 27
| Pourriez-vous me dire comment faire ? Je n'en ai aucune idée...
EDIT : En tout cas superbe résultat! Si je souhaite modifier la forme de mes onglets, dois-je m'attaquer à un template ? | | |
|
| |
Invité Invité
| Pour modifier la forme de tes onglets, il faut juste "s'attaquer " aux codes CSS qui s'y relient n.n ! Et je vais te dir ela même chose qu'à Ladylex : - Citation :
- Et bien, tu ouvres une nouvelle class dans ton CSS, que tu configure comme tu veux.
Et tu ajoute donc ta height :... px et aussi width si tu le désire ^^
Lors que tu a fini, tu prend la div class, et tu va la mettre dans ton templates, au même endroit que celle de tes "my_stats" si tu as repris les codes de Iowan ^^ | | |
|
| |
Noham
{ Membre }
Messages : 27
| Je vais faire des essaies pour les onglets, merci^^
Par contre, je ne comprends toujours pas pour les classes... Ou plutôt, pourriez-vous m'expliquer la marche à suivre ? Je ne sais pas créer de classes de moi-même... | | |
|
| |
Invité Invité
| - Code:
-
.nomdetaclasse { background-color : #COLOR ; border : #COLOR 1px solid ; -moz-border-radius-bottomleft:1px; -moz-border-radius-bottomright:1px; -moz-border-radius-topleft:1px; -moz-border-radius-topright:1px } Et tout ce que tu voudras ôO C'est un exemple ^^ | | |
|
| |
Noham
{ Membre }
Messages : 27
| Ce que je ne comprends pas c'est la manière dont je dois m'en servir pour imposer la taille de mon cadre... Plus je cherche plus j'ai l'impression de m'enliser avec l'histoire des classes...
Le nom que je donne est-il déterminant ? et comment dois-je "dire" au CSS que c'est pour les statistique ? J'avoue être largué complètement... | | |
|
| |
Invité Invité
| Si tu veux, les codes que tu as déjà pour tes statistiques, on va les rentrer dans ce petit tableau que tu vas créer ._. | | |
|
| |
Noham
{ Membre }
Messages : 27
| Désolé je dois vous paraître vraiment lent... Donc j'ai repris ce que vous m'aviez donné, je l'ai rempli de la manière suivante : - Code:
-
.my_stats{ font-size: 10px; text-align:center; border: #9FC2D6 2px double; -moz-border-radius-bottomright: 2px; -moz-border-radius: 10px ; -moz-border-radius-topright: 5px; -moz-border-radius-topleft: 10px; height: 100px; width: 200px; background: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); } Du coup mon tableau est nettement plus beau (merci ceci dit au passage, l'effet est bien meilleur et j'ai même pu m'amuser avec un angle). En revanche, mon problème est toujours identique. Mon cadre ne se fixe pas... Il suit la longueur comme dans les captures de mon premier post... Désolé d'abuser de votre patience... | | |
|
| |
Invité Invité
| HAN MON DIEU MAIS QUELLE CRUCHE XD Désolée je t'ai induis en erreur è.é Mais mon cerveau viens de se connecter <3 Tu peux laisser tout ça, c'est TRES BIEN <3 Sauf peut-être une faute è.é : - Code:
-
my_stats{ font-size: 10px; text-align:center; border: #9FC2D6 2px double; -moz-border-radius-bottomright: 2px; -moz-border-radius: 10px ; -moz-border-radius-topright: 5px; -moz-border-radius-topleft: 10px; height: 100px; width: 200px; background-image : url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png") } Maintenant il faut que tu retrouve dans ton templates modifié le - Code:
-
<div class="my_stats"> ....... </div> pour le remplacer par : - Code:
-
<span class="my_stats"> ...... </span> N'oublie pas de valider ton template, et normalement c'est bon =p | | |
|
| |
Noham
{ Membre }
Messages : 27
| Eh bien je dois vraiment être très mauvais... Parce que ça ne marche toujours pas (je suis vraiment désolé d'abuser à ce point). Je vous donne donc tout mon template : - Spoiler:
- 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> <div class="my_cat"> <ul></ul> </div>
<div class="my_cat_body"> <!-- BEGIN catrow --><!-- BEGIN tablehead --> <table class="my_modified_table" width="100%" border="0" cellspacing="1" cellpadding="0"> <div class="my_forum_name">{catrow.tablehead.L_FORUM}</div> <!-- END tablehead --> <!-- BEGIN forumrow --> <tr> <td colspan="3" class="my_title" align="center"><div class="myfoo_title"><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></div><img src="{SPACER}" alt="" height="5" width="1" /></td> </tr> <tr> <td class="my_img" valign="top"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="" /></td> <td class="my_disc" width="300" valign="top" >{catrow.forumrow.FORUM_DESC}</td> <span> <td class="my_stats"> Missives: {catrow.forumrow.TOPICS}<br /> Correspondances: {catrow.forumrow.POSTS}<br /> Dernier échange: {catrow.forumrow.LAST_POST}<br /></span> </td> </tr> <!-- END forumrow --> <!-- BEGIN tablefoot --> </table><img src="{SPACER}" alt="" height="5" width="1" /><!-- END tablefoot --><!-- END catrow --> </div>
Et tout mon CSS : - Spoiler:
- Code:
-
a.mainmenu:link, a.mainmenu:visited{ margin-left : 6px; margin-right : 6px; font-family : Georgia; color: #ffffff; background-color: #67969D; text-align:left; border-left: 4px solid #c1cfd1; border-right: 4px solid #67969d;}
.forumline{border:1px dotted #9FC2D6; }
a { text-decoration: none; }
u { text-decoration: none; border-bottom: 2px #CCC282 solid; -moz-border-radius: 6px; }
i {color:#CCC282;}
a { font-variant: small-caps; }
.postdetails.poster-profile a img { -moz-border-radius-bottomleft:5px; -moz-border-radius-bottomright:5px; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; border: 3px solid #594D3F; }
.opacity img { filter:alpha(opacity=50); -moz-opacity:0.5;opacity: 0.5; }
.opacity img:hover { filter:alpha(opacity=100); -moz-opacity:1;opacity: 1; }
.quote { background-image: url('http://img444.imageshack.us/img444/1954/fondn.jpg') !important; background-repeat: no-repeat !important; background-position: left top !important; padding-left: 20px; }
.spoiler { background-image: url('http://img444.imageshack.us/img444/1954/fondn.jpg') !important; background-repeat: no-repeat !important; background-position: left top !important; padding-left: 20px; }
.code { background-image: url('http://img444.imageshack.us/img444/1954/fondn.jpg') !important; background-repeat: no-repeat !important; background-position: left top !important; padding-left: 20px; }
.vignettes {-moz-border-radius:3px; border-color:#FFFFFF; border:1px; background-color: #0F0F0F; padding-right:10px; padding-left:10px; padding-bottom: 3px; padding-top:3px;}
a.infobulle { position: relative; }
a.infobulle span { display: none; /* ceci masque l'infobulle */ } a.infobulle:hover { background: none; /* correction d'un bug IE */ z-index: 999; /* on définit une valeur pour l'ordre d'affichage */
} a.infobulle:hover span { display: inline; /* ceci affiche l'infobulle */ position: absolute;
white-space: nowrap; /* on change la valeur de la propriété white-space pour qu'il n'y ait pas de retour à la ligne non-désiré */
top: 5px; /* on positionne notre infobulle */ left: 15px;
background: #ebebeb; /* arrière-plan de l'infobulle */
color: black; /* texte dans l'infobulle */ padding: 3px;
/* bordures de votre infobulle*/ border: 1px dotted black; border-left: 1px dotted black; }
#search-box { display:none; }
#faq { display:none; }
.forum_blabla { text-shadow: black 1px 1px 2px; }
a.forumlink { text-shadow: black 1px 1px 2px; }
/*----QEEL----*/
#navigQeel { background-image: url(http://img718.imageshack.us/img718/2206/onglet.png); }
.atelier { color: #910B0B; }
.totalQeel { background: url('http://img185.imageshack.us/img185/8405/qui3.png'); height:250px; width:745px; margin:auto; position:relative; font-family:Georgia; }
.imgQeel { background-repeat: no-repeat; position:absolute; top:50px; margin-left:100px; width:278px; height:300px; z-index: 999; }
#stats, #vingth {display:none; }
/* barre de navigation */ .navigQeel { background: url('http://img179.imageshack.us/img179/9061/28245117.png'); list-style:none; width:490px; padding-left:70px; margin-left:185px; border-bottom:#90ccdc solid 4px; height:22px; margin-top:10px; }
.navigQeel li { float:left; }
.navigQeel li a { display:block; height:22px; line-height:22px; margin-right:5px; color:#3a5359; text-decoration:none; font-family:arial, verdana, sans-serif; text-align:center; font-size:12px; font-weight:bold; cursor:pointer; width:113px; }
.navigQeel li a:hover { background: url('http://img718.imageshack.us/img718/2206/onglet.png'); color:#FC244F; } .navigQeel li a.active {background: url('http://img718.imageshack.us/img718/2206/onglet.png');}
.divQeel { width:490px !important; height:168px; margin-left:195px; background: #; margin-top:2px; padding-bottom:20px; border-bottom:#90ccdc solid 4px; position:relative; bottom:14px; z-index:80; padding-left:60px; }
.affiGroup { width:500px; list-style:none; list-style-position:inside; position:relative; right:20px; top:30px; }
.affiGroup li { float:left; }
.affiGroup li a { display:block; height:20px; line-height:16px; margin-right:9px; text-decoration:none; font-family:arial, verdana; text-align:center; font-size:11px; font-weight:bold; cursor:pointer; text-transform:uppercase; background: #88877F; border-top:1px solid #886e61; border-left:1px solid #886e61; -moz-border-radius:10px; border-radius:10px; padding-left:7px; padding-right:7px; }
.partQeel { width:445px; padding-top:65px; margin-left:30px; text-align:justify; font-size:11px; color:#53443e; }
.partQeel table .row1 .gensmall { font-family:arial !important; font-size:11px !important; }
.partQeel table .row1 { font-family:arial !important; font-size:11px !important; }
.yosh td { background-color: transparent; }
a { text-decoration: none; }
.sujet{ background: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); background-color:#080808; -moz-border-radius-topleft: 20px; -moz-border-radius-topright: 20px; font-family: Georgia; width: 200px; margin-left: 250px; border-top: 2px solid #201f1f; border-left: 2px solid #201f1f; border-right: 2px solid #201f1f; }
.description{ background: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); -moz-border-radius:15px; font-family: Georgia; text-align: center; width: 500px; border: 2px solid #201f1f; }
.def { background: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); border-bottom: 2px solid #201f1f; border-left: 2px solid #201f1f; border-right: 2px solid #201f1f; -moz-border-radius-bottomleft: 20px; -moz-border-radius-bottomright: 20px; font-family: Georgia; width: 450px; }
/* Profil Masqué */ .profilmasque /*c'est juste le css du bouton*/ { background-color: #401b04; border: 1px dashed #FFBB00; /* en pointillée et en gris*/ font-size: 12px; /*taille de la police*/ font-family: Georgia; letter-spacing: 1px; }
.profil1/*c'est le css de l'ensemble bouton+profil*/ { width: 200px; background-color: #CCC282; border: 1px dashed #FFBB00; /* en pointillée et en gris*/ font-size: 12px; font-family: Georgia; letter-spacing: 1px; font-weight: bold; }
#lnrbox { position: fixed; bottom: 50px; left: 0px; background-color: #000000; background-position: center; border: 1px solid #594D3F; border-bottom: 4px solid #594D3F; z-index: 999; }
td.row1{ background-image: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); background-repeat: repeat; } td.row2{ background-image: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); background-repeat: repeat; } td.row3{ background-image: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); background-repeat: repeat; }
a.forumlink { text-decoration: none; texte-color: #DEE396; text-align: center; font-family :Georgia; background-image: URL("http://img444.imageshack.us/img444/1954/fondn.jpg"); border-bottom: 2px double #CCC282; border-top: 2px double #CCC282; -moz-border-radius: 10px ; border-right: 5px solid #CCC282; -moz-border-radius: 10px ; border-left: 5px solid #CCC282; display:block;
} a.forumlink:hover { text-decoration: none; text-align: center; background-image: URL("http://img135.imageshack.us/img135/2612/fondbarre.jpg"); border-bottom:2px double #F5EFD0; border-top: 2px double #F5EFD0; -moz-border-radius: 10px ; border-right: 5px solid #F5EFD0; -moz-border-radius: 10px ; border-left: 5px solid #F5EFD0; display:block; }
.my_modified_table{ width: 80%; margin-left: 10%; margin-right: 10%; margin-top: 5px !important;
font-family: Georgia; }
.my_forum_name{ display:none; } .my_img{ width: 10%; margin-left: 50px; } .my_disc{ width: 70%; text-align:center; font-size: 13px; }
.my_stats{ font-family: Georgia; font-size: 10px; text-align:center; border: #9FC2D6 2px double; -moz-border-radius-bottomright: 2px; -moz-border-radius: 10px ; -moz-border-radius-topright: 5px; -moz-border-radius-topleft: 10px; height: 100px; width: 200px; background-image : url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png") }
.myfoo_title{ text-align:center; width: 100%; border-bottom: 2px double #CCC282; border-top: 2px double #CCC282; -moz-border-radius: 10px ; border-right: 5px solid #CCC282; -moz-border-radius: 10px ; border-left: 5px solid #CCC282; background-image: URL("http://img444.imageshack.us/img444/1954/fondn.jpg"); display:block; } .my_title{ text-align:center; font-size: 14px; font-family: Georgia; }
.my_cat_body{ border: 2px solid #9FC2D6; -moz-border-radius: 6px; background: url("http://nsa14.casimages.com/img/2010/03/05/1003051244292661.png"); }
.my_cat ul{ margin:0; padding: 0; width: 800px !important; } .my_cat li{ margin-left: 1px; } .my_cat_style{ border-top: 2px #9FC2D6 solid; border-left: 2px #9FC2D6 solid; border-right: 2px #9FC2D6 solid; -moz-border-radius-topleft: 6px; -moz-border-radius-topright: 1px; text-align:center; font-size: 11px; padding-left:10px; padding-right:10px; display:inline; background-color: #401b04; width: 500px; font-family: Georgia; font-weight: bold;
} .my_cat a{ text-decoration: none !important; color: #9FC2D6; }
.onglets{ right: 22%; position:relative; width: 500px; }
| | |
|
| |
Invité Invité
| - 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> <div class="my_cat"> <ul></ul> </div>
<div class="my_cat_body"> <!-- BEGIN catrow --><!-- BEGIN tablehead --> <table class="my_modified_table" width="100%" border="0" cellspacing="1" cellpadding="0"> <div class="my_forum_name">{catrow.tablehead.L_FORUM}</div> <!-- END tablehead --> <!-- BEGIN forumrow --> <tr> <td colspan="3" class="my_title" align="center"><div class="myfoo_title"><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></div><img src="{SPACER}" alt="" height="5" width="1" /></td> </tr> <tr> <td class="my_img" valign="top"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="" /></td> <td class="my_disc" width="300" valign="top" >{catrow.forumrow.FORUM_DESC}</td> <span> <td> <span class="my_stats">Missives: {catrow.forumrow.TOPICS}<br /> Correspondances: {catrow.forumrow.POSTS}<br /> Dernier échange: {catrow.forumrow.LAST_POST}</span><br /></span> </td> </tr> <!-- END forumrow --> <!-- BEGIN tablefoot --> </table><img src="{SPACER}" alt="" height="5" width="1" /><!-- END tablefoot --><!-- END catrow --> </div>
Et maintenant ? ^^ | | |
|
| |
Noham
{ Membre }
Messages : 27
| Eh bien c'est mieux dans le sens où ça ne fait plus de gros "placard" mais ce n'est pas encore ça : Désolé, je dois franchement être casse pieds à la longue... | | |
|
| |
Invité Invité
| Cette fois-ci j'ai vérifié, et cela marche x') - 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> <div class="my_cat"> <ul></ul> </div>
<div class="my_cat_body"> <!-- BEGIN catrow --><!-- BEGIN tablehead --> <table class="my_modified_table" width="100%" border="0" cellspacing="1" cellpadding="0"> <div class="my_forum_name">{catrow.tablehead.L_FORUM}</div> <!-- END tablehead --> <!-- BEGIN forumrow --> <tr> <td colspan="3" class="my_title" align="center"><div class="myfoo_title"><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></div><img src="{SPACER}" alt="" height="5" width="1" /></td> </tr> <tr> <td class="my_img" valign="top"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="" /></td> <td class="my_disc" width="300" valign="top" >{catrow.forumrow.FORUM_DESC}</td> <span> <td> <div class="my_stats">Missives: {catrow.forumrow.TOPICS}<br /> Correspondances: {catrow.forumrow.POSTS}<br /> Dernier échange: {catrow.forumrow.LAST_POST}</div><br /></span> </td> </tr> <!-- END forumrow --> <!-- BEGIN tablefoot --> </table><img src="{SPACER}" alt="" height="5" width="1" /><!-- END tablefoot --><!-- END catrow --> </div> Autant pour moi éè | | |
|
| |
Noham
{ Membre }
Messages : 27
| Bonsoir! Merci beaucoup! Ça marche nickel chrome! Merci de votre patience! Mais j'ai une autre question, voilà le résultat : Comment puis-je faire pour que le texte soit totalement au centre du cadre ? | | |
|
| |
Imari
{ Membre hyper-actif }
Messages : 1538
| Bonjour ^^
Votre problème est-il résolu ? | | |
|
| |
Noham
{ Membre }
Messages : 27
| Oui, merci, j'ai fini par trouver et j'ai oublié de le signaler, je vais le faire de suite | | |
|
| |
Contenu sponsorisé
| |
| |
| Catégories en onglet : Mettre les statistiques dans un cadre de taille fixe [terminé] | |
|