Barre de navigation

2 participants

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

Résolu Barre de navigation

Message par © Summers Dim 8 Avr 2012 - 17:20

Bonjour !

J'aimerais savoir comment on peux avoir une barre de navigation comme ceci : http://www.bazzart.org/ En haut, par contre es-ce possible qu'elle soit fixe en haut du Header ?!

C'est pour ses forum : http://bloodysunnydale.forumactif.com/ et http://university-sydney.forumactif.fr/

Merci beaucoup !


Dernière édition par © Summers le Dim 8 Avr 2012 - 18:06, édité 1 fois
© Summers

© Summers
**

Messages : 91
Inscrit(e) le : 30/03/2012

http://guiltypleasure.forumgratuit.org/
© Summers a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Barre de navigation

Message par Anzu Dim 8 Avr 2012 - 17:24


Bonjour,

Je vous invite à lire ce tuto

Si j'ai bien compris votre demande (quand vous descendez le forum, qu'elle reste en haut, qu'elle ne suive pas le reste du forum donc ?, il suffit de mettre dans le css (donné dans le tuto)

Code:
position: fixed;

Cordialement.
Anzu

Anzu
Membre actif

Féminin
Messages : 20685
Inscrit(e) le : 30/08/2007

https://forum.forumactif.com/
Anzu a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Barre de navigation

Message par © Summers Dim 8 Avr 2012 - 17:37

Merci beaucoup j'ai essayer de suivre les étape, mais cela ne marche pas, j'ai plus tout tout de barre de navigation là !
http://university-sydney.forumactif.fr/

Template :

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 ?l?ments */
            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 contenur en fonction des ?l?ments et de la hauteur personnalis?e dans l'admin */
            $('ul#fa_ticker_content li').each( function () {
               if ($(this).height() > height_max)
               {
                  height_max = $(this).height();
               }
            } );

            /* Redimensionnement des ?l?ments 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>  <div class="haut">
<a href="#top"><img src="http://img15.hostingpics.net/pics/445772Sanstitre4.png" align="absmiddle"></a>
</div>
<div class="bas">
<a href="#bottom"><img src="http://img15.hostingpics.net/pics/374950Sanstitre5.png" align="absmiddle"></a>
</div>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
   <!-- BEGIN hitskin_preview --> <table cellspacing="0" cellpadding="0" border="0" align="{MENU_POSITION}">
              <tr>
                  <td align="{MENU_POSITION}"{MENU_NOWRAP}><center><div class="navig">{GENERATED_NAV_BAR}</div></center></td>
              </tr>
            </table>
   <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="{U_INDEX}"><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="{U_INDEX}"><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="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 -->

CSS ::

Code:
/* © SUMMERS */

/* CLASS */

.titrecate{
color: #D9502C;
font-family: vijaya;
font-weight: bold;
font-size: 30px;
letter-spacing: -1pt;
text-shadow: 0px 0px 1px white;}

.fontmod{
padding: 0px; padding-top: 0px;;
border: 5px solid #CC4F4F;
width: 550px;
font-family: arial;
font-size:11px;
font-variant: normal;
line-height: 15px;
text-align: justify;
background-repeat: repeat;
-moz-border-radius: 30px; -moz-box-shadow: 3px 3px 3px #FFFF;
background-image:url(http://i40.servimg.com/u/f40/13/10/57/12/sans_721.png);
}

.fontcate{
background-color: #FCF5E4;
border-left: 6px solid #D9502C;
border-right: 6px solid #D9502C;
padding:5px; margin-left:auto;margin-right:auto;
text-align:justify; font-family: Verdana; font-size: 9px;
-moz-border-radius: 20px;}

.groupe{
  font-family: Times New Roman; font-style: italic; padding:5px;
  font-size: 18px; letter-spacing: -1pt;
  text-shadow: 0px 0px 1px; TEXT-ALIGN: center; }

/* FIN */

/* Marges */
.bodyline{
border-top: none !important;
border-bottom: none !important; }

body { margin: 0 auto;}
.bodyline { padding:0px; }

#page-body { padding-top: 10px; /* Espace entre la barre et les pubs */
}
/* Fin */

/* Cadres forums */
.bodyline{
background-color: #FBEDD9; padding: 5px;
border-left: 4px solid #D9502C;
border-right: 4px solid #D9502C;
-moz-border-radius: 10px 10px 10px 10px;}
/* Fin */

/* Justification auto */
.postbody {
    display: block; padding-left: 15px; padding-right: 15px;
    text-align:justify; }
/* FIN */


a.forumlink:link, a.forumlink:visited {
font-size: 20px; TEXT-ALIGN: left;
color: #C50C11; font-family: Times New Roman;
font-weight: bold; border-bottom: 2px dotted #80172C; letter-spacing: 2px;
padding-left: 0px; padding-right: 3px; padding-bottom: 0px; padding-top: 3px;
margin-bottom: -2px;
display: block; }

a.forumlink:hover, a.forumlink:hover:visited {
color: #80172C;
border-bottom: 2px dotted #C50C11;
display: block; }

a:link {text-decoration: none;}
a:hover{text-decoration: none !important;}

.milieu {width: 90%; margin: 0px; border: 1px solid #C50C11;-moz-border-radius: 10px;
-webkit-border-radius: 5px; padding: 5px;  background-color: #232026;}

.forumline {
max-width: 820px; margin: auto;
Border-top:4px solid #C50C11;
border-bottom:4px solid #C50C11;
border-left:10px solid #C50C11;
border-right:10px solid #C50C11;
padding-left: 2px; padding-right: 2px; padding-bottom: 5px;
-moz-border-radius-topleft: 50px; /*arrondi angle gauche*/
-moz-border-radius-topright: 50px; /*arrondi angle droit*/
  -moz-border-radius-bottomleft: 50px; /*arrondi angle gauche*/
-moz-border-radius-bottomright: 50px; /*arrondi angle droit*/
-webkit-border-radius-top-left: 50px; /*arrondi angle gauche*/
-webkit-border-radius-top-right: 50px; /*arrondi angle droit*/
  -webkit-border-radius-bottom-left: 50px; /*arrondi angle gauche*/
-webkit-border-radius-bottom-right: 50px; /*arrondi angle droit*/
margin-bottom: 10px; }

        .forumline {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;}
       
        td.catHead, th.thHead {
        -webkit-border-radius: 15px 15px 0 0;
        -moz-border-radius: 15px 15px 0 0;
        border-radius: 15px 15px 0 0;}
       
        td.catBottom, th.thBottom {
        -webkit-border-radius: 0 0 15px 15px;
        -moz-border-radius: 0 0 15px 15px;
        border-radius: 0 0 15px 15px;}

/* TITRE CATEGORIE */
a.forumlink{
font-family: Times New Roman;
color : black; font-weight: bold;
font-style: italic; text-transform: lowercase;
font-size: 25px; letter-spacing: -1pt;
text-shadow: 0px 0px 2px white; }

.quote
{
background-color: #FBEDD9;
border: 3px solid #D9502C;
-moz-border-radius: 10px;
border-radius: 10px; padding: 4px;
text-align: justify;
font-style: italic; }

.code {
background-color: #FBEDD9;
border: 3px solid #D9502C;
-moz-border-radius: 10px;
border-radius: 10px; padding: 4px;
text-align: justify;
font-style: italic; }
.selectCode { float:right; text-transform: uppercase; cursor:pointer;font-style: italic;font-size: 9px; }

.spoiler_closed {
display:block;
background-color: #FBEDD9;
border: 3px solid #D9502C;
-moz-border-radius: 10px;
border-radius: 10px;
padding: 4px;
   }
.spoiler_closed.hidden {
   display:none;
   }
.spoiler_content {
display:block;
background-color: #FBEDD9;
border: 3px solid #D9502C;
-moz-border-radius: 10px;
border-radius: 10px;
padding: 4px; }

/* FIN */

/* BOUTONS HAUT BAS DE PAGE */
.haut
{ position:fixed;
bottom: 3px;
    right: 60px; }
.bas
{ position:fixed;
bottom: 3px;
    right: 0px; }
/* FIN */

/* INFOBULLE PA */

a.bulle {
position: relative; color: black;
text-decoration: none; font-size: 9px;
text-align:justify;
}
a.bulle span {
display: none; /* on masque l'infobulle */
}
a.bulle:hover {
background: none; /* correction d'un bug IE */
z-index: 999; /* on définit une valeur pour l'ordre d'affichage */

cursor: help; /* on change le curseur par défaut en curseur d'aide */
}
a.bulle:hover span {
display: inline; /* on 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: 10px; /* on positionne notre infobulle */
left: 5px;

background: white;

color: black; padding: 3px;

border-left: 4px solid #E8A16E;
border-right: 4px solid #E8A16E;
-moz-border-radius: 10px 10px 10px 10px;
}

/* FIN */
/* FIN */


/* profil*/
/*rangspe*/

.rangad{ display:block; font-weight: normal; font-family: Georgia; font-size: 28px;
text-decoration: none !important; letter-spacing: -3px;
margin-bottom: -8px; text-align: center; text-transform: lowercase; color: #FAC68A;
}

.name { display:block; font-weight: bold; font-family: Traveling Typewriter Georgia; font-size: 18px;
text-align: center;  margin-bottom: -8px;
text-decoration: none !important; letter-spacing: -1px; text-transform: lowercase; text-shadow: 1px 1px 1px #FAC68A;
}

.pseudo { font-size: 25px; font-family: Traveling Typewriter Georgia;      font-weight: bold;
letter-spacing: -2px; text-transform: lowercase;  text-shadow: 1px 1px 1px #FAC68A;
text-align: center;
}

.fonpro {background-color: #FCF5E4; width: 225px;
  border-left: 5px #EED7B2 solid; border-right: 5px #EED7B2 solid;
  -moz-border-radius:10px; -webkit-border-radius:10px;
padding-bottom: 20px; text-align: center;
}

.cadreproinfo { background: #EED7B2;  width: 200px;
color: #C50C11; font-family: verdana; font-size: 11px;
  text-align: justify; padding-left: 5px;
  line-height: 14px; letter-spacing: -1px; text-shadow: #CCA264 0px 0px 1px;
}

.cadreproinfo img {    width: 190px;
border: 3px solid #ffffff; -moz-border-radius: 20px; -webkit-border-radius: 20px;
}
 

.provava img {  height: 304px; width: 190px;
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomright:30px;
-moz-border-radius-topleft:30px; -moz-border-radius-topright:0px;
  border: 5px solid #523591;
}

.provava img:hover { height: 304px; width: 190px;
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomright:30px;
-moz-border-radius-topleft:30px; -moz-border-radius-topright:0px;
border: 5px solid #523591;
rotation : -5px; -webkit-transform: rotate(-5deg); -moz-transform: rotate(-5deg);
}

.textpro { color: #FAC68A;
  margin-left: 5px; text-align : justify;
}


/*messages administratifs*/

.fonadun { background-image: url("http://img833.imageshack.us/img833/9141/sanstitre21t.png"); width: 450px;
border-right: 5px solid #A35924; border-left: 5px solid #A35924; 
-moz-border-radius:10px; -webkit-border-radius:10px;
padding: 15px;
}

.ligne {
  border-bottom: #A35924 dotted;
}

.nomadun { font-family: georgia;font-size: 30px; font-weight: bold; color: #A35924;
text-align: center; line-height: normal;
letter-spacing: -3px; text-transform: uppercase; text-shadow: 1px 1px 1px  #1C0601;
}

.titre { background-color: #1C0601; width: 400px;
font-family: times; font-weight:bold; font-style:italic; font-size:20px;
letter-spacing: -2px; text-shadow: #78411A 0px 0px 1px; text-transform: lowercase;
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 6px;
  border-top: 2px solid #A35924; border-bottom: 2px solid #A35924;
}


.fonadeux { background-color: #1C0601; width: 400px; height: 150px; overflow: auto;
font-family: verdana; font-size: 11px;
text-align: justify; line-height: 14px;
letter-spacing: -1px; text-shadow: #78411A 0px 0px 1px;
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 6px;
 border-bottom: 2px solid #A35924;   
}

.fonadtrois { background-color: #1C0601; width: 400px;
font-family: verdana; font-size: 11px;
text-align: justify; line-height: 14px;
letter-spacing: -1px; text-shadow: #78411A 0px 0px 1px;
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 6px;
 border-bottom: 2px solid #A35924;   
}

.imagad { border: 7px solid #A35924;
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomright:0px;
-moz-border-radius-topleft:100px; -moz-border-radius-topright:100px;
}


/*formulaires*/

.formfond { background-image: url("http://img833.imageshack.us/img833/9141/sanstitre21t.png"); width: 450px;
border-right: 5px solid #A35924; border-left: 5px solid #A35924; 
-moz-border-radius:10px; -webkit-border-radius:10px;
padding: 15px;
}

.formnom { font-family: georgia;font-size: 30px; font-weight: bold; color: #A35924;
text-align: center; line-height: normal;
letter-spacing: -3px; text-transform: uppercase; text-shadow: 1px 1px 1px  #1C0601;
}

.formbarre {
  border-bottom: 3px dotted #9E6C48;
}

.formbarre2 {
  border-bottom: 2px solid #9E6C48;
}

.formimage { width: 100%; align: center;  border: 3px solid #A35924;
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomright:30px;
-moz-border-radius-topleft:30px; -moz-border-radius-topright:0px;
}
 
.formvava { opacity: 3;
border: 5px solid #A35924; -moz-border-radius: 20px; -webkit-border-radius: 20px;

}

.formvava:hover { opacity: 3;
border: 5px solid #9E6C48;  -moz-border-radius: 20px; -webkit-border-radius: 20px;
}

.formfondeux { background-color: #1C0601; width: 95%;
  line-height: 14px; font-size: 10px; text-align: justify;
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 6px;
 border-bottom: 2px solid #A35924;  border-top: 2px solid #A35924;         
}

.formtitre { font-family: times; font-weight:bold; font-style:italic; font-size: 25px;
letter-spacing: -2px; text-shadow: #78411A 0px 0px 1px; text-transform: lowercase; text-align: center;
}

.formtext { height: 200px; overflow: auto;
  font-size: 10px;
  text-align: justify;
}

.formfondtrois{ background-color: #1C0601; width: 95%; height: 150px; overflow:auto;
  line-height: 14px; font-size: 10px; text-align: justify;
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 6px;
 border-bottom: 2px solid #A35924;  border-top: 2px solid #A35924;         
}

.formicon { opacity: 3;
border: 5px solid #A35924; -moz-border-radius: 20px; -webkit-border-radius: 20px;

}

.formicon:hover { opacity: 3;
border: 5px solid #9E6C48;  -moz-border-radius: 20px; -webkit-border-radius: 20px;
}

.formtextdeux { height: 90px; overflow: auto;
  font-size: 10px;
  text-align: justify;
}

a.formimginfo {
  position: relative;
  text-decoration: none;
}

a.formimginfo span {
  display: none;
}
a.formimginfo:hover {
  background: none;
  z-index: 999;
}
a.formimginfo:hover span { display: inline; position: absolute; top: 10px; left: -20px;
  height: 150px; width: 200px; background-color: #1C0601;  color: #CCA264;
  padding: 3px;  text-align: center;    font-size: 10px;
  border: 2px solid #A35924;
  -moz-border-radius: 20px; -webkit-border-radius: 20px;
}

.formlien { display:block;
  font-style: italic ; font-size: 15px; font-family: Georgia; color: #A35924;
  letter-spacing: -1px; text-decoration: none !important;  text-shadow: 1px 1px 1px  #78411A;
  text-align: center;  text-transform: lowercase;
}

.formdeslien {
  overflow: auto; height: 85px; width: 180px;
  text-align: justify;  padding: 10px;
  color: #A35924; font-size: 10px;
}

.formicon2 { opacity: 3;
border: 3px solid #A35924;
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px; -moz-border-radius-topright:0px;
}

.formicon2:hover { opacity: 3;
border: 3px solid #9E6C48;
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px; -moz-border-radius-topright:0px;
}

.formstatut { font-family: Georgia;  font-size: 12px; color: #CCA264;
text-align: center; text-shadow: #CCA264 0px 0px 1px;  letter-spacing: 3px;
}

/*listing*/

.fonlist { background-color: #1C0601; width: 400px;
font-family: verdana; font-size: 11px;
text-align: justify; line-height: 14px;
letter-spacing: -1px; text-shadow: #78411A 0px 0px 1px;
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 6px;
 border-bottom: 2px solid #A35924;        border-top: 2px solid #A35924;
}


.barlist { background:#2E0D05; color:#2E0D05;
width: 200px; height: 3px;
}

.listext { overflow: auto; height : 200px; font-size: 11px; line-height: normal
}

.bordlist { border-bottom: #2E0D05 dotted; padding: 1px;
}

.reservlist { color: #D98950;
}

.listgirl { display:block; text-decoration: none !important;
font-weight: bold; font-family: Georgia; letter-spacing: 1px; font-size: 35px;
text-align: center; color: #E3C89E; text-transform: lowercase;
}

.prisgirl { color: #E3C89E;
}


.listboy { display:block; text-decoration: none !important;
font-weight: bold; font-family: Georgia; letter-spacing: 1px; font-size: 35px;
text-align: center; color: #CCA264; text-transform: lowercase;
}

.prisboy { color: #CCA264;
}

/* Enlever "Note",...*/

div.topictitle strong { display: none; }

/* Limite entre le rang et l'avatar */

.rang {
    border-bottom: 3px dotted #00000; }

/* Autres */

a:link {text-decoration: none;}
a:hover{text-decoration: none !important;}
a { text-decoration: none; }
a:link { text-decoration: none; }
a:hover { text-decoration: none; }

input,textarea, select {
-moz-border-radius-bottomleft:9px;
-moz-border-radius-bottomright:9px;
-moz-border-radius-topleft:9px;
-moz-border-radius-topright:9px;}

/* Fin */

/* Barre de navigation */

a.mainmenu{
color: #D9502C;
-moz-border-radius:3px;
font-family: Amatic SC;
font-weight: bold;
text-transform: lowercase;
font-size: 18px;
letter-spacing: -1pt;
text-shadow: 0px 0px 1px white;
}

a.mainmenu:hover {
color: #D9502C;
-moz-border-radius:3px;
font-family: Amatic SC;
font-weight: bold;
text-transform: lowercase;
font-size: 18px;
letter-spacing: -1pt;
text-shadow: 0px 0px 1px white;
}

/* Cadre avatar */

.postdetails.poster-profile a img {
-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
border: 5px solid #FFFFFF; }


/*DERNIERE EDITION*/
tr.post span.gensmall { display: none; }

/*Barre de navigation */

        .navig {
        position: absolute;
        top: 0px;
        width: 100%;
          background-color: #000000;
                  border-bottom: 3px solid #a17a55;
        }
        a.mainmenu img{
        display: none;
        }

/* QEEL */

/** le fond global du QEEL **/

.fond_qeel {
  background-color: #EE9843;
  border: 2px solid #D9502C;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  padding: 5px;}
 
/** le fond des cadres **/
  .fond_bloc {
  background-color: #FCF5E4;
    border: 2px solid #D9502C;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  padding: 5px;
  text-align: justify;
          width: 200px;}
 
/** les titres du QEEL**/
 .titre_qeel {
  color: black;
font-family: vijaya;
font-weight: bold;
font-size: 25px;
letter-spacing: -1pt;
text-shadow: 0px 0px 2px black;}

Vous pouvez m'aidez SVP merci d'avance !
© Summers

© Summers
**

Messages : 91
Inscrit(e) le : 30/03/2012

http://guiltypleasure.forumgratuit.org/
© Summers a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Barre de navigation

Message par © Summers Dim 8 Avr 2012 - 17:59

Ah ok, je vous remercie ! Je ne clos pas se sujet du coup ?!

EDIT :: Vous avez supp votre message ?!
© Summers

© Summers
**

Messages : 91
Inscrit(e) le : 30/03/2012

http://guiltypleasure.forumgratuit.org/
© Summers a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Barre de navigation

Message par Anzu Dim 8 Avr 2012 - 18:03

Remplacez votre template par celui ci:

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}">
  <center><div class="navig">{GENERATED_NAV_BAR}</div></center><br /><br /><br />
   <!-- 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="{U_INDEX}"><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="{U_INDEX}"><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="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 -->

Vous vous étiez trompé en suivant le tuto.

Et dans la css;

Repérez navig et changez le absolute pas fixed.

Cordialement.

Edit: Oui je l'ai supprimé. Je pensais que c'était un bug passager, étant donné qu'aucune modification ne semblait être prise en compte mais apparemment c'est bon Smile
Anzu

Anzu
Membre actif

Féminin
Messages : 20685
Inscrit(e) le : 30/08/2007

https://forum.forumactif.com/
Anzu a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Barre de navigation

Message par © Summers Dim 8 Avr 2012 - 18:05

Ah merci infiniment, décidément je suis une boulette en template. Merci encore.

Sujet clos !
© Summers

© Summers
**

Messages : 91
Inscrit(e) le : 30/03/2012

http://guiltypleasure.forumgratuit.org/
© Summers 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