|
|
Paparazziie
{ Membre }
Messages : 79
| Bonjour tout le monde ! Je suis actuellement dans la création de mon futur forum de graphisme et je me retrouve face à quelques petit problèmes que je n'arrive pas à régler moi-même. J'espère que vous aller être capable de m'aider ! Problème N°1 : RESOLUJ'ai appliqué un contour à mon forum en utilisant '.forumline' mais je me retrouve avec un contour à l'emplacement prévu pour ma PA que je ne désire pas avoir. - Spoiler:
Problème N°2 : RESOLUJ'ai appliqué un 'img {margin-left:30px;}' pour décaler les image news, old, xxx. Seulement, ça me décale toute les image (images invisibles ou non). quel code utiliser pour que ça ne s'applique qu'aux images nex, old, xxx ? Problème N°3 :J'ai cherché un tutoriel que je suis sure d'avoir déjà croiser mais que je n'arrive pas à retrouver. J'aimerais savoir comment faire pour que mes sous-forums s'affiche dans la description de mes forums. - Spoiler:
J'espère avoir été assez claire dans mes explications. Si vous avez besoin de quelque chose d'autre, n'hésitez pas à me demander. |
Dernière édition par Paparazziie le Dim 19 Déc 2010, 20:21, édité 3 fois | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Yep. Problème N°1 : tu n'as rien mis dans ta PA ? ( titre+contenu ) . Problème N°2 : Normal , si tu met juste img , ca s 'appliqueras a toutes tes images au pire ajoute une class avec un margin-left , seulement aux images "news, old, xxx" . Problème N°3 : Si j'trouve ; j'édit | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Merci d'avoir répondu !
Pour te répondre :
Problème N°1 : Non je n'ai rien mis dans ma Pa pour l'instant et même si je mets quelque chose dans ma Pa, je souhaiterais voir le contour disparaitre..
Problème N°2 : Je ne sais pas comment ajouter une classe, je n'ai jamais rien compris. | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Pour les class , Soit tu met dans ton css : - Code:
-
.le_nom_de_ta_class { margin-left:30px; }
Puis dans ton html/templates : - Code:
-
<div class="le_nom_de_ta_class">Ton_image</div>
Ou sois directement dans ton html/templates : - Code:
-
<div style="margin-left:30px;">Ton_image</div>
| | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Ah oui -_- : Pour la bordure/contour : Dans ton template index_body trouve : - Code:
-
<!-- BEGIN message_admin_index --> <table class="forumline" id="taille_accmessage" 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 -->
et remplace le par : - Code:
-
<!-- BEGIN message_admin_index --> <table id="taille_accmessage" 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 -->
| | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Je te remercie d'avoir répondu mais ta technique pour les contours ne marche pas. Et je vais peut-être parait bête mais je ne comprends pas comment faire pour les classes, désolé | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Euh , pourtant moi ca marche oo > tu as juste a enlever le - class="forumline" -
Pour les class c'est simple : - Code:
-
<div style="margin-left:30px;"><img src="URL_DE_TON_IMAGE" /></div> | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Je vais ré-essayer pour la bordure de la Pa. Je le mets dans quel template le code pour les class ? | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
|
Peut tu me faire un screen pour me montrer c'est lesquelles d'images que tu voulais appliquer le margin-left stp ?
| | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| |
| |
Hiro
Ninja Codeur
Messages : 1179
| ok, Dans ton template index_box trouve : - Code:
-
<img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /> remplace le par : - Code:
-
<div style="margin-left:30px;"><img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></div> Normalement ca devrait fonctionner | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Ah merci beaucoup ça marche ! Par contre, ça ne marche toujours pas pour le contour de la PA | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| - Code:
-
<!-- BEGIN message_admin_index --> <table class="forumline" id="taille_accmessage" 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 -->
Le -- class="forumline" -- correspond au contour de la pa donc si tu l'enlève il ne devrait plus y'avoir de contour . | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Je suis d'accord avec toi mais ça ne marche pas. Voila ce que j'ai mis : - Code:
-
<!-- BEGIN message_admin_index --> <table id="taille_accmessage" 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 --> | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Et avec - Code:
-
border="none !important" ? | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Comme ça ? - Code:
-
<!-- BEGIN message_admin_index --> <table id="taille_accmessage" width="100%" border="0" cellspacing="1" cellpadding="0" border="none !important"> <!-- 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 --> | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| - Code:
-
<!-- BEGIN message_admin_index --> <table id="taille_accmessage" width="100%" cellspacing="1" cellpadding="0" border="none !important"> <!-- 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 --> ↑ Comme ca ↑ | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| A ok ! Et non, ça ne marche toujours pas | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Arf decidement ^^
Peut tu me montrer ton templates ? | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Oui, le voila : - Code:
-
{JAVASCRIPT} <!-- BEGIN message_admin_index --> <table id="taille_accmessage" width="100%" cellspacing="1" cellpadding="0" border="none !important"> <!-- 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="facebook_login()" 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="facebook_login()" 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 -->
<!-- BEGIN disable_viewonline --> <center> <div style="background-image: url('http://www.imagup.com/data/1105616944.html'); width: 665px; height: 364px;"><div width="100%" align="center"> <span class="groupe"><a href="URL"><font color="#0099FF " size="1">Groupe 1</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"> <span class="groupe"><a href="URL"><font color="#FFDD00" size="1">Groupe 2</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"> <span class="groupe"><a href="URL"><font color="#A6FF00" size="1">Groupe 3</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"> <span class="groupe"><a href="URL"><font color="#FF00BB" size="1">Groupe 4</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"><br> </div><table width="100%" class="tableau_qeel"></center>
<tr> <td class="gensmall" width="50%" style="border-right: 3px solid #647fad; "> <table border="0" style="text-align: justify; padding-right: 5px;"><br><br> <div style="background;>{L_CONNECTED_MEMBERS}</div> <div style="background;>{L_WHOSBIRTHDAY_TODAY}</div> {L_WHOSBIRTHDAY_WEEK}</table> </td> <td width="50%" style="text-align: justify; padding-left: 5px;"> <span class="gensmall">Bienvenue sur Quietly ! </span> <span class="gensmall"><span id="users">{TOTAL_USERS}</span> <script type="text/javascript">
document.getElementById('users').innerHTML=document.getElementById('users').innerHTML.replace(/Nous avons/,"Tree Hill comporte");
document.getElementById('users').innerHTML=document.getElementById('users').innerHTML.replace(/membre enregistré/,"Tree Hillien"); document.getElementById('users').innerHTML=document.getElementById('users').innerHTML.replace(/membres enregistrés/,"Tree Hilliens"); </script>. Les Tree Hilliens sont souvent au rendez-vous <span class="gensmall"><span id="messages">{TOTAL_POSTS}</span> <script type="text/javascript">
document.getElementById('messages').innerHTML=document.getElementById('messages').innerHTML.replace(/Nos membres ont posté un total de/,"Ils se sont adressé"); </script>. <span class="gensmall"><span id="newuser">{NEWEST_USER}</span> <script type="text/javascript">
document.getElementById('newuser').innerHTML=document.getElementById('newuser').innerHTML.replace(/L'utilisateur enregistré le plus récent est/,"Le dernier Tree Hillien à avoir enménagé est"); </script> <br> <span class="gensmall"><span id="delf">{TOTAL_USERS_ONLINE}</span><script type="text/javascript">
document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Il y a en tout/,"Il y a actuellement");
document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Enregistré/,"Tree Hillien"); document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Enregistrés/,"Tree Hilliens");
document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Invité/,"Futur Tree Hillien"); document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Invités/,"Futurs Tree Hilliens");
</script><br><br> <span class="gensmall">{LOGGED_IN_USER_LIST}</span> </td> </tr> </table> <!-- END disable_viewonline --> {CHATBOX_BOTTOM} <br clear="all" /> <!-- BEGIN switch_legend --> <table border="0" cellspacing="3" cellpadding="0" align="center"> <tr> <td align="center" width="20"><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" /></td> <td><span class="gensmall">{L_NEW_POSTS}</span></td> <td></td> <td align="center" width="20"><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" /></td> <td><span class="gensmall">{L_NO_NEW_POSTS}</span></td> <td> </td> <td align="center" width="20"><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" /></td> <td><span class="gensmall">{L_FORUM_LOCKED}</span></td> </tr> </table> <!-- END switch_legend -->
{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 --> | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| D'ac merci , essaye , comme ca : - Code:
-
{JAVASCRIPT} <!-- BEGIN message_admin_index --> <table id="taille_accmessage" width="100%" cellspacing="1" cellpadding="0" border="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"style="border:none;"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="facebook_login()" 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="facebook_login()" 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 -->
<!-- BEGIN disable_viewonline --> <center> <div style="background-image: url('http://www.imagup.com/data/1105616944.html'); width: 665px; height: 364px;"><div width="100%" align="center"> <span class="groupe"><a href="URL"><font color="#0099FF " size="1">Groupe 1</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"> <span class="groupe"><a href="URL"><font color="#FFDD00" size="1">Groupe 2</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"> <span class="groupe"><a href="URL"><font color="#A6FF00" size="1">Groupe 3</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"> <span class="groupe"><a href="URL"><font color="#FF00BB" size="1">Groupe 4</font></a></span><img src="http://i63.servimg.com/u/f63/11/83/54/29/space10.gif"><br> </div><table width="100%" class="tableau_qeel"></center>
<tr> <td class="gensmall" width="50%" style="border-right: 3px solid #647fad; "> <table border="0" style="text-align: justify; padding-right: 5px;"><br><br> <div style="background;>{L_CONNECTED_MEMBERS}</div> <div style="background;>{L_WHOSBIRTHDAY_TODAY}</div> {L_WHOSBIRTHDAY_WEEK}</table> </td> <td width="50%" style="text-align: justify; padding-left: 5px;"> <span class="gensmall">Bienvenue sur Quietly ! </span> <span class="gensmall"><span id="users">{TOTAL_USERS}</span> <script type="text/javascript">
document.getElementById('users').innerHTML=document.getElementById('users').innerHTML.replace(/Nous avons/,"Tree Hill comporte");
document.getElementById('users').innerHTML=document.getElementById('users').innerHTML.replace(/membre enregistré/,"Tree Hillien"); document.getElementById('users').innerHTML=document.getElementById('users').innerHTML.replace(/membres enregistrés/,"Tree Hilliens"); </script>. Les Tree Hilliens sont souvent au rendez-vous <span class="gensmall"><span id="messages">{TOTAL_POSTS}</span> <script type="text/javascript">
document.getElementById('messages').innerHTML=document.getElementById('messages').innerHTML.replace(/Nos membres ont posté un total de/,"Ils se sont adressé"); </script>. <span class="gensmall"><span id="newuser">{NEWEST_USER}</span> <script type="text/javascript">
document.getElementById('newuser').innerHTML=document.getElementById('newuser').innerHTML.replace(/L'utilisateur enregistré le plus récent est/,"Le dernier Tree Hillien à avoir enménagé est"); </script> <br> <span class="gensmall"><span id="delf">{TOTAL_USERS_ONLINE}</span><script type="text/javascript">
document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Il y a en tout/,"Il y a actuellement");
document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Enregistré/,"Tree Hillien"); document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Enregistrés/,"Tree Hilliens");
document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Invité/,"Futur Tree Hillien"); document.getElementById('delf').innerHTML=document.getElementById('delf').innerHTML.replace(/Invités/,"Futurs Tree Hilliens");
</script><br><br> <span class="gensmall">{LOGGED_IN_USER_LIST}</span> </td> </tr> </table> <!-- END disable_viewonline --> {CHATBOX_BOTTOM} <br clear="all" /> <!-- BEGIN switch_legend --> <table border="0" cellspacing="3" cellpadding="0" align="center"> <tr> <td align="center" width="20"><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" /></td> <td><span class="gensmall">{L_NEW_POSTS}</span></td> <td></td> <td align="center" width="20"><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" /></td> <td><span class="gensmall">{L_NO_NEW_POSTS}</span></td> <td> </td> <td align="center" width="20"><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" /></td> <td><span class="gensmall">{L_FORUM_LOCKED}</span></td> </tr> </table> <!-- END switch_legend -->
{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 --> | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Ca ne marche toujours pas. Sinon, c'est pas grave,je ferais avec. | | |
|
| |
Hiro
Ninja Codeur
Messages : 1179
| Pourtant quand je teste sur mon forum de test , ca fonctionne parfaitement :/
| | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| Bah je sais pas. peut-être que quelqu'un aura une autre idée | | |
|
| |
Paparazziie
{ Membre }
Messages : 79
| En fait, j'ai décidé de ne plus enlever le contour de ma Pa ! Mais as-tu trouvé le tuto qui résoudrait mon problème n°3 ? | | |
|
| |
Contenu sponsorisé
| |
| |
|