TOUT est centré

Voir le sujet précédent Voir le sujet suivant Aller en bas

Résolu TOUT est centré

Message par tony59 Mer 1 Mai 2013 - 4:39

Bonjour!

Je me permet d'écrire ici pour signaler un problème qui, je l'espère sur mon site, sera rapidement remédié.
En effet, je suis en PHPBB2 et...tout est centré sur mon forum http://goo.gl/8aHML que ce soit les articles ou tout simplement en bas dans l'encart "qui a vu?" pourtant, je ne le mérite pas je n'ai rien fait là dessus
Bref, j'espère que ce problème être réglé.

Je ne sais que raconter... je sais juste que ça doit être une histooire de template puisque je m'en sert tous les jours et les mets toujours à jours mais j'imagine que ça doit venir de là

Pouvez vous m'aider s'ilv ous plait?


Dernière édition par tony59 le Jeu 2 Mai 2013 - 19:17, édité 1 fois
avatar

tony59
*****

Masculin
Messages : 618
Inscrit(e) le : 23/10/2010

http://www.leforumsecret.com
tony59 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: TOUT est centré

Message par Invité Mer 1 Mai 2013 - 8:41

Bonjour,

C'est la balise CENTER qui centre tous le contenu :
Code:
<center></center>

As-tu un template de modifier, il se peut que sa bien de là.
Merci, bonne journée.
Anonymous

Invité
Invité


Invité a été remercié(e) par l'auteur de ce sujet.

Résolu Re: TOUT est centré

Message par tony59 Mer 1 Mai 2013 - 8:53

Salut.

Merci, mais j'ai déjà regardé, je n'en vois pas qui ne sont pas fermées malheureusement Sad

Si ça peut aider, il me semble que c'est le "haut de page" que j'ai modifié juste avant ce "bug", ce template c'est ça :
Spoiler:
avatar

tony59
*****

Masculin
Messages : 618
Inscrit(e) le : 23/10/2010

http://www.leforumsecret.com
tony59 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: TOUT est centré

Message par Invité Mer 1 Mai 2013 - 8:58

Bonjour à nouveau,

Essayé ceci pour voir :
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}"

xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
<head>
  <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
  <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
  <meta http-equiv="content-script-type" content="text/javascript" />
  <meta http-equiv="content-style-type" content="text/css" />
  <!-- BEGIN switch_compat_meta -->
  <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
  <!-- END switch_compat_meta -->
  <!-- BEGIN switch_canonical_url -->
  <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
  <!-- END switch_canonical_url -->
  {META_FAVICO}
  {META}
  {META_FB_LIKE}
  <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
  {T_HEAD_STYLESHEET}
  {CSS}
  <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
  <link rel="search" type="application/opensearchdescription+xml"

href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
  <script src="{JQUERY_PATH}" type="text/javascript"></script>
  <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>

  <!-- BEGIN switch_fb_login -->
  <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  <!-- END switch_fb_login -->

  <!-- BEGIN switch_ticker -->
  <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
  <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
  <!-- END switch_ticker -->

  <!-- BEGIN switch_ticker_new -->
  <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  <script type="text/javascript">//<![CDATA[
      /* Definir le sens de direction en fonction du panneau admin */
      var tickerDirParam = "{switch_ticker.DIRECTION}";
      var slid_vert = false;
      var auto_dir = 'next';
      var h_perso = parseInt({switch_ticker.HEIGHT});

      switch( tickerDirParam )
      {
        case 'top' :
            slid_vert = true;
            break;

        case 'left':
            break;

        case 'bottom':
            slid_vert = true;
            auto_dir = 'prev';
            break;

        case 'right':
            auto_dir = 'prev';
            break;

        default:
            slid_vert = true;
      }

      $(document).ready(function() {
        var w_cont = $('#fa_ticker_container').width();

        if (w_cont > 0)
        {
            $('#fa_ticker_container').width(w_cont);

            /* Affichage de la liste */
            $('#fa_ticker_content').css('display','block');

            /* Calcul des dimensions du conteneur et des elements */
            var width_max = $('ul#fa_ticker_content').width();
            var width_item = Math.floor(width_max / {switch_ticker.SIZE});
            var height_max = h_perso;

            /* Calcul de la hauteur maximale du conteneur en fonction des elements et de la hauteur

personnalisee dans l'admin */
            $('ul#fa_ticker_content li').each( function () {
              if ($(this).height() > height_max)
              {
                  height_max = $(this).height();
              }
            } );

            /* Redimensionnement des elements et des images trop larges */
            $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
              if ($(this).width() > width_item)
              {
              var ratio      = $(this).width() / width_item;
              var new_height = Math.round($(this).height() / ratio);
              $(this).height(new_height).width(width_item);
              }
            });

            /* Redimensionnement et centrage du conteneur en mode vertical */
            if (slid_vert)
            {
              $('ul#fa_ticker_content').width(width_item).height(height_max).css

('marginLeft','auto').css('marginRight','auto');
            }

            /* Initialisation du caroussel */
            $('#fa_ticker_content').jcarousel({
                  vertical: slid_vert,
              wrap: 'circular',
              auto: {switch_ticker.STOP_TIME},
              auto_direction: auto_dir,
            scroll: 1,
            size: {switch_ticker.SIZE},
            height_max: height_max,
            animation: {switch_ticker.SPEED}
            });
        }
        else
        {
            $('ul#fa_ticker_content li:not(:first)').css('display','none');
            $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
        }
      });
  //]]>
  </script>
  <!-- END switch_ticker_new -->

  <script type="text/javascript">//<![CDATA[
  $(document).ready(function(){
      <!-- BEGIN switch_enable_pm_popup -->
        pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg',

'HEIGHT=225,resizable=yes,WIDTH=400');
        pm.focus();
      <!-- END switch_enable_pm_popup -->
      <!-- BEGIN switch_report_popup -->
        report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT=

{switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
        report.focus();
      <!-- END switch_report_popup -->
      <!-- BEGIN switch_ticker -->
        ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED},

'{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
      <!-- END switch_ticker -->
  });

  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight =

{LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
  <!-- END switch_login_popup -->

  <!-- BEGIN switch_login_popup -->
  $(document).ready( function() {
      $(window).resize(function() {
        var windowWidth = document.documentElement.clientWidth;
        var popupWidth = $("#login_popup").width();
        var mypopup = $("#login_popup");

        $("#login_popup").css({
        "left": windowWidth/2 - popupWidth/2
            });
      });
  });
  <!-- END switch_login_popup -->
  //]]>
  </script>
  {GREETING_POPUP}
  <!-- BEGIN switch_ticker_new -->
  <style>
  .jcarousel-skin-tango .jcarousel-item {
      text-align:center;
      width: 10px;
  }

  .jcarousel-skin-tango .jcarousel-item-horizontal {
      margin-right: {switch_ticker.SPACING}px;
  }

  .jcarousel-skin-tango .jcarousel-item-vertical {
      margin-bottom: {switch_ticker.SPACING}px;
  }
  </style>
  <!-- END switch_ticker_new -->
  {HOSTING_JS}
  <!-- BEGIN google_analytics_code -->
  <script type="text/javascript">
  //<![CDATA[
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', '{G_ANALYTICS_ID}']);
    _gaq.push(['_trackPageview']);

    (function() {
      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
      var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();
  //]]>
  </script>
  <!-- END google_analytics_code -->
</head>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}"

vlink="{T_BODY_VLINK}">
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://

{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->

  <!-- BEGIN switch_login_popup -->
  <div id="login_popup">
      <table class="forumline" width="{LOGIN_POPUP_WIDTH}" height="{LOGIN_POPUP_HEIGHT}" border="0"

cellspacing="1" cellpadding="0">
        <tr height="25">
            <td class="catLeft">
              <span class="genmed module-title">{SITENAME}</span>
            </td>
        </tr>
        <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
            <td class="row1" align="left" valign="top">
              <div id="login_popup_buttons">
                  <form action="{S_LOGIN_ACTION}" method="get">
                    <input type="submit" class="mainoption"

value="{L_LOGIN}" />
                    <input type="button" class="mainoption"

value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
                    <input id="login_popup_close" type="button"

class="button" value="{L_DONT_DISPLAY_AGAIN}" />
                  </form>
              </div>
              <span class="genmed">{LOGIN_POPUP_MSG}</span>
            </td>
        </tr>
      </table>
  </div>
  <!-- END switch_login_popup -->

  <a name="top"></a>
  {JAVASCRIPT}

  <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="10" border="0"

align="center">
      <tr>
        <td class="bodyline">
            <table width="100%" cellspacing="0" cellpadding="0" border="0">
              <tr>
                  <!-- BEGIN switch_logo_left -->
                  <td><a href="http://www.leforumsecret.com"><img src="{LOGO}"

id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                  <!-- END switch_logo_left -->
                  <td align="center" width="100%" valign="middle">
                    <!-- BEGIN switch_logo_center -->
                    <a href="http://www.leforumsecret.com"><img

src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a>
                    <br />
                    <!-- END switch_logo_center -->
                    <div class="maintitle">{MAIN_SITENAME}</div>
                    <br />
                    <span class="gen">{SITE_DESCRIPTION}<br />

</span>
                  </td>
                  <!-- BEGIN switch_logo_right -->
                  <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0"

alt="{L_INDEX}" vspace="1" /></a></td>
                  <!-- END switch_logo_right -->
              </tr>
            </table>

    <div style="margin: auto; text-align: center; width: 98%; position: relative ! important; z-index: 999999 ! important;"><center>


   
          <!-barre candidats>
      <style type="text/css">
/* CSS Infobulle */
a.info {
  position: relative;
  color: black;
  text-decoration: none;
}
a.info span {
  display: none; /* On masque l'infobulle. */
}
a.info:hover {
  background: none; /* Correction d'un bug d'Internet Explorer. */
  z-index: 500; /* On définit une valeur pour l'ordre d'affichage. */
}
a.info:hover span {
  display: inline; /* On affiche l'infobulle. */
  position: absolute;
  font-size: 10px;
  font-family: Trebuchet MS, Verdana, Arial, serif;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 10px;
  color: white;
  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: -240px; /* On positionne notre infobulle. */
  left: -157px;
  width: 330px;
  height: 190px;
  background: url('http://i41.servimg.com/u/f41/15/61/61/20/toolti10.png);
}
</style>

<a href="http://www.leforumsecret.com/f148-emilie-sabbia" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/emilie10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/emilie10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Emilie <br />
      <b>Signe astro</b> : Lion<br />
      <b>Ville</b> : Seraing <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/%C3%89milie-Secret-Story-6/181820368611332&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f165-marie-sebag" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/marie_10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/marie_10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Marie <br />
      <b>Age</b> : 25 ans <br />
      <b>Signe astro</b> : Balance<br />
      <b>Ville</b> : Paris<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Marie-Secret-Story-6/468603583165827&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f163-julien-sznejderman" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/julien10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/julien10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Julien  <br />
      <b>Age</b> : 21 ans<br />
      <b>Signe astro</b> : Taureau<br />
      <b>Ville</b> : Combs-la-Ville <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Julien-Secret-Story-6/307931612621249&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f164-isabella-di-fabio" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/isabel10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/isabel10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Isabella <br />
      <b>Age</b> : 18 ans <br />
      <b>Signe astro</b> : Sagitaire <br />
      <b>Ville</b> : Paris <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Isabella-Secret-Story-6/465898536770346&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f166-midou" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/midou_11.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/midou_11.png'></td>
      <td width="75%">
      <b>Prénom</b> : Midou <br />
      <b>Age</b> : 26 ans <br />
      <b>Signe astro</b> : Lion<br />
      <b>Ville</b> : Champs-sur-Marne <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Midou-Secret-Story-6/442679422409134&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f192-david" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/david_11.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/david_11.png'></td>
      <td width="75%">
      <b>Prénom</b> : David<br />
      <b>Age</b> : 20 ans<br />
      <b>Signe astro</b> : Vierge<br />
      <b>Ville</b> : Paris<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/David-Secret-Story-6/403260396379823&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f171-capucine" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/capuci11.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/capuci11.png'></td>
      <td width="75%">
      <b>Prénom</b> : Capucine<br />
      <b>Age</b> : 21 ans<br />
      <b>Signe astro</b> : Taureau<br />
      <b>Ville</b> : Lyon<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/capucinesecretstory6officielle&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f190-caroline" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/caroli10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/caroli10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Caroline<br />
      <b>Age</b> : 24 ans<br />
      <b>Signe astro</b> : Balance<br />
      <b>Ville</b> : Longeville les Metz<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Caroline-Secret-Story-6/179872538809014&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f194-virginie" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/virgin10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/virgin10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Virginie<br />
      <b>Age</b> : 27 ans<br />
      <b>Signe astro</b> : Gémeaux<br />
      <b>Ville</b> : Longeville-les-Metz<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Virginie-Secret-Story-6/150589895073929&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f191-kevin" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/kevin_10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/kevin_10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Kévin<br />
      <b>Age</b> : 33 ans<br />
      <b>Signe astro</b> : Vierge<br />
      <b>Ville</b> : Longeville-les-Metz<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Kévin-Secret-Story-6/449293281748865&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f193-sacha" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/sacha_10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/sacha_10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Sacha<br />
      <b>Age</b> : 18 ans<br />
      <b>Signe astro</b> : Bélier<br />
      <b>Ville</b> : Beaucouze <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Sacha-Secret-Story-6/415901708440725&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f181-mathieu" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/mathie10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/mathie10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Mathieu<br />
      <b>Age</b> : 27 ans<br />
      <b>Signe astro</b> : Taureau<br />
      <b>Ville</b> : Châteauguay <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Mathieu-Secret-Story-6/180506505412093&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f169-yoann" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/yoann_10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/yoann_10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Yoann<br />
          <b>Age</b> : 21 ans<br />
      <b>Signe astro</b> : Scorpion<br />
      <b>Ville</b> : Lyon<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Yoann-Secret-Story-6/215127391941584&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f170-alexandre" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/alex_g10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/alex_g10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Alexandre<br />
      <b>Age</b> : 20 ans<br />
      <b>Signe astro</b> : Verseau<br />
      <b>Ville</b> : Lyon<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Alexandre-Secret-Story-6/317990121611987&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f184-ginie" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/ginie_10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/ginie_10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Ginie<br />
      <b>Age</b> : 20 ans<br />
      <b>Signe astro</b> : Verseau <br />
      <b>Ville</b> : Kortenberg <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Ginie-Secret-Story-6/389866151048859&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f183-serguei" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/sergue10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/sergue10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Sergueï<br />
      <b>Age</b> : 25 ans<br />
      <b>Signe astro</b> : Taureau<br />
      <b>Ville</b> : Nice<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Sergueï-Secret-Story-6/398673616838653&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f185-audrey" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/audrey10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/audrey10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Audrey<br />
      <b>Age</b> : 28 ans<br />
      <b>Signe astro</b> : Taureau<br />
      <b>Ville</b> : Miami<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.facebook.com/2012.SecretStory&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
<a href="http://www.leforumsecret.com/f182-fanny" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/fanny_10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/fanny_10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Fanny<br />
      <b>Age</b> : 26 ans<br />
      <b>Signe astro</b> : Sagitaire<br />
      <b>Ville</b> : Maisons-Alfort <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/pages/Fanny-Secret-Story-6/420037144683523&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
  <a href="http://www.leforumsecret.com/f150-nadege" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/nadege10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/nadege10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Nadège<br />
      <b>Age</b> : 23 ans<br />
      <b>Signe astro</b> : Cancer<br />
      <b>Ville</b> : Thônex<br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/Lucassecretstory6&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>
  <a href="http://www.leforumsecret.com/f161-thomas-vergara" class="info"><img style="border: none;" width="55" height="55" src="http://i41.servimg.com/u/f41/15/61/61/20/thomas10.png" alt="" />
<span>
<table style="text-align: left; width: 100%; font-family: Trebuchet MS; font-size: 10px;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr valign="top">
      <td><img style="border: none;" width="150" height="150" src='http://i41.servimg.com/u/f41/15/61/61/20/thomas10.png'></td>
      <td width="75%">
      <b>Prénom</b> : Thomas<br />
      <b>Age</b> : 23 ans<br />
      <b>Signe astro</b> : Vierge<br />
      <b>Ville</b> : Aix en Provence <br /><br />
      <center><iframe src="http://www.facebook.com/plugins/like.php?href=https://www.facebook.com/MandeeSecretStory6&layout=standard&show_faces=false&height=25&width=65&action=like&colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="margin-top: 2px; border:none; overflow:hidden; width:65px; height:25px"></iframe></center>
    </td>
    </tr>
  </tbody>
</table>
</a>

  <!barre candidats fin>
 
   
   
   
      <iframe name="Dédicaces" SRC="http://rererere.web44.net/dedinomy/index.php" scrolling="no" height="30" width="700" FRAMEBORDER="no"></iframe>
  <right>    <a href="javascript:popup('http://www.leforumsecret.com/h127-ajouter-une-dedi-secrete')"><img src="http://goo.gl/OdKnK" alt="" width="50" height="30" /></a></right>
  <SCRIPT language="javascript">
    function popup(page) {
      window.open(page);
    }
  </SCRIPT>
  <script type="text/javascript" src="http://services.supportduweb.com/menus-horizon/style-11.js?txt=Secret%2520Story%25206%3Dhttp%253A//www.leforumsecret.com/%2523%0A--Zone%2520Libre%2520SS6%3Dhttp%253A//www.leforumsecret.com/f138-zone-100-libre-secret-story-6%0A--Live/A%2520commenter%3Dhttp%253A//www.leforumsecret.com/c14-espace-a-commenter-replay%0A--Replay/Audience%3Dhttp%253A//www.leforumsecret.com/f153-resumes-audiences-streaming-et-telechargements-replay%0A--Les%2520secrets%3Dhttp%253A//www.leforumsecret.com/f160-les-secrets%0A--Nominations%3Dhttp%253A//www.leforumsecret.com/f140-les-nominations-estimations-predictions-et-choix-du-public%0A--Presse/D%25E9brieffs%3Dhttp%253A//www.leforumsecret.com/c15-espace-presse%0A--Staff/Maison%3Dhttp%253A//www.leforumsecret.com/c10-espace-endemol%0A--Autres%2520saisons%3Dhttp%253A//www.leforumsecret.com/f72-espace-souvenir%0A--Autres%2520t%25E9l%25E9-r%25E9alit%25E9s%3Dhttp%253A//www.leforumsecret.com/f85-les-autres-telerealites-francaises-et-etrangeres%0ABlabla%2526HS%3Dhttp%253A//www.leforumsecret.com/f42-zone-libre-hs-debats%0A--Zone%2520Blabla%3Dhttp%253A//www.leforumsecret.com/f33-la-zone-blabla%0A--Commentez%2520la%2520TNT%3Dhttp%253A//www.leforumsecret.com/f32-commentes-la-tnt%0A--Buzz%2526Actu%3Dhttp%253A//www.leforumsecret.com/f45-buzz-actus%0A--Geek%2526Web%3Dhttp%253A//www.leforumsecret.com/f52-informatique-geekeries-web%0A--Actu%2520people%3Dhttp%253A//www.leforumsecret.com/f7-l-actu-people%0A--Lol%2526Humour%3Dhttp%253A//www.leforumsecret.com/f64-humour%0A--Bizarreries%3Dhttp%253A//www.leforumsecret.com/f63-paranormal-legende-etrange%0A--Disney%3Dhttp%253A//www.leforumsecret.com/f35-disney-mania%0A--Musique%3Dhttp%253A//www.leforumsecret.com/f65-music%0A--S%25E9ries%3Dhttp%253A//www.leforumsecret.com/f37-series%0A--Cin%25E9ma%3Dhttp%253A//www.leforumsecret.com/f74-cinema%0A--Jeux%2520vid%25E9os%3Dhttp%253A//www.leforumsecret.com/f66-jeux-videos-consoles%0A--Jeux%2520du%2520forum%3Dhttp%253A//www.leforumsecret.com/f43-jeux%0A--Encore%2520+%3Dhttp%253A//www.leforumsecret.com/f42-zone-libre-hs-debats%0ARechercher%3Dhttp%253A//www.leforumsecret.com/%2523%0A--Sur%2520le%2520forum%3Dhttp%253A//www.leforumsecret.com/search%0A--Sur%2520Google%3Dhttp%253A//www.leforumsecret.com/t1790-faire-une-recherche-sur-internet-google%252314320%0ASecr%25E9tistes%3Dhttp%253A//www.leforumsecret.com/%2523%0A--Profil%3Dhttp%253A//www.leforumsecret.com/profile%253Fmode%253Deditprofile%0A--Pr%25E9sentations%3Dhttp%253A//www.leforumsecret.com/f40-presentation-des-membres%0A--Listes%3Dhttp%253A//www.leforumsecret.com/memberlist%0A--Absences%3Dhttp%253A//www.leforumsecret.com/f83-prevenir-d-une-absence%0AMessagerie%3Dhttp%253A//www.leforumsecret.com/privmsg%253Ffolder%253Dinbox%0A--Envoyer%2520un%2520MP%3Dhttp%253A//www.leforumsecret.com/privmsg%253Fmode%253Dpost%0A--Consulter%2520mes%2520MP%3Dhttp%253A//www.leforumsecret.com/privmsg%253Ffolder%253Dinbox%0A--Relire%2520mes%2520envois%3Dhttp%253A//www.leforumsecret.com/privmsg%253Ffolder%253Dsentbox%0A***PLUS***%3Dhttp%253A//www.leforumsecret.com/%2523%0A--SECRET ET VOUS%3Dhttp%253A//www.leforumsecret.com/h121-secretvous-posez-toutes-vos-questions-a-propos-de-secret-story/%0A--BLOG%3Dhttp%253A//secretstoryexclus.skyrock.com/%0A--RADIO%3Dhttp%253A//leforumsecret.com/h113-ecoutez-radio-haide-en-direct-sur-leforumsecretcom-player%0A--FACEBOOK%3Dhttps%253A//facebook.com/leforumsecret%0A--TWITTER%3Dhttps%253A//twitter.com/LeTwittosSecret%0AOn/Off%3Dhttp%253A//www.leforumsecret.com/%2523%0A--On/Connect%3Dhttp%253A//www.leforumsecret.com/login%0A--Off/Deconnect%3Dhttp%253A//www.leforumsecret.com/login%253Flogout%253D1%0A"></script></center></div>

    <div style="margin: auto; text-align: center; width: 100%;"><a href="http://goo.gl/MC7rs" class="postlink" target="_blank"><img src="http://goo.gl/CnGgB" alt="Hit Connection, la webradio de LeForumSecret.com" border="0"></a><a href="http://goo.gl/LH8zd" class="postlink" target="_blank"><img src="http://goo.gl/6yzGE" alt="Secret Info Story" border="0"></a><a href="http://goo.gl/tFkbu" class="postlink" target="_blank"><img src="http://goo.gl/srsRm" alt="The First TV TFTV Toute l'actualité de la télé" border="0"></a><a href="http://goo.gl/4xQq3" class="postlink" target="_blank"><img src="http://goo.gl/zW8ZA" alt="Le blog de Secret Story 40" border="0"></a><a href="http://goo.gl/VsFV1" class="postlink" target="_blank"><img src="http://goo.gl/wxWdY" alt="Secret Story Actu, toute l'actu de Secret Story 7" border="0"></a><a href="http://goo.gl/OTG4x" class="postlink" target="_blank"><img src="http://goo.gl/6BS6Q" alt="Fun Ludo" border="0"></a><a href="http://www.planete-ados.com/" class="postlink" target="_blank"><img src="http://goo.gl/wlzqy" alt="Planete-Ados.com chat ado" border="0"></a> <a href="http://www.leforumsecret.com/f3-devenir-partenaire" class="postlink" target="_blank"><img src="http://goo.gl/6eIyR" alt="Devenez partenaire avec LeForumSecret.com" border="0"></a>



 
    <table cellspacing="0" cellpadding="0" border="0" align="{MENU_POSITION}">
              <tr>
                  <td align="{MENU_POSITION}"{MENU_NOWRAP}>{GENERATED_NAV_BAR}</td>
              </tr>
            </table>

 
            <div style="clear: both;"></div>

            <!-- BEGIN switch_ticker_new -->
            <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
              <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                  <tr>
                    <td {CLASS_TABLE_TYPE} align="left" class="row1">
                        <div id="fa_ticker_container">
                          <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none;">
                              <!-- BEGIN ticker_row -->
                              <li>{switch_ticker.ticker_row.ELEMENT}</li>
                              <!-- END ticker_row -->
                          </ul>
                        </div>
                    </td>
                  </tr>
              </table>
            </div>
            <!-- END switch_ticker_new -->
 
            <!-- BEGIN switch_ticker -->
            <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
              <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                  <tr>
                    <td {CLASS_TABLE_TYPE} align="left" class="row1">
                        <div id="fa_ticker_container">
                          <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                              <div class="fa_ticker_content">
                                <!-- BEGIN ticker_row -->
                                <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                <!-- END ticker_row -->
                              </div>
                          </div>
                        </div>
                    </td>
                  </tr>
              </table>
            </div>
            <!-- END switch_ticker -->


 
            <div id="page-body">
              <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                  <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
                    <tbody>
                        <tr>
                          <td valign="top" width="{C1SIZE}">
                              <div id="{ID_LEFT}">
                                <!-- BEGIN giefmod_index1 -->
                                {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                <!-- END giefmod_index1 -->
                              </div>
                          </td>
                          <td valign="top" width="100%">
<!-- BEGIN html_validation -->
                          </td>
                        </tr>
                    </tbody>
                  </table>
              </div>
            </div>
        </td>
      </tr>
  </table>
</body>
</html>
<!-- END html_validation -->


Merci, bonne journée.
Anonymous

Invité
Invité


Invité a été remercié(e) par l'auteur de ce sujet.

Résolu Re: TOUT est centré

Message par tony59 Jeu 2 Mai 2013 - 0:16

Bonjour,

Non désolé, ça ne donne rien de plus, c'est pareil Sad
Je ne vois vraiment pas ce que ça peut être, aucun "center" ne semble "pas fermé" en plus... Je sais juste que l'une des dernières modifications c'était de retirer les liens au dessus du contenu où il était toujours indiqué les liens vers les niveaux plus haut (rubriques, catégories, forums.. comme ici avec "Forum gratuit : Le forum des forums actifs :: Entraide & Support... :: Gérer l'apparence de son forum" peut être à voir vers ce niveau là mais je ne sais pas comment retrouver cette partie étant donné que je l'ai supprimé et ne sais plus comment ça s'appelait.

Edit : c'est bon, je ne sais pas ce que j'ai fais mais ça marche Smile
avatar

tony59
*****

Masculin
Messages : 618
Inscrit(e) le : 23/10/2010

http://www.leforumsecret.com
tony59 a été remercié(e) par l'auteur de ce sujet.

Voir le sujet précédent Voir le sujet suivant Revenir en haut

- Sujets similaires

Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum