Problème avec mon accordéon, comment enlevez les chiffres ?

3 participants

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

Résolu Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Invité Jeu 8 Sep 2011 - 18:58

Bonjour, j

Je voulais savoir comment je pouvais enlever les chiffres, qu'on voit sur l'accordéon ? Je vous donne le CSS et le Javascript... (Le code de la p.a n'a pas été touché...)

Accordéon
Code:
/*************************************************
*
*  project:    liteAccordion - horizontal accordion plugin for jQuery
*  author:    Nicola Hibbert
*  url:        http://nicolahibbert.com/horizontal-accordion-jquery-plugin
*  demo:        http://www.nicolahibbert.com/demo/liteAccordion
*
*  Version:    1.1.3
*  Copyright:    (c) 2010-2011 Nicola Hibbert
*
/*************************************************/
;(function($) {
 
  $.fn.liteAccordion = function(options) {
           
      // defaults
      var defaults = {
        containerWidth :400,
        containerHeight : 250,
        headerWidth : 48,
       
        firstSlide : 1,
        onActivate : function() {},
        slideSpeed : 600,
        slideCallback : function() {},       
       
        autoPlay : false,
        pauseOnHover : false,
        cycleSpeed : 30000,

        theme : 'basic', // basic, light*, dark, stitch*
        rounded : false,
        enumerateSlides : false
      },
     
      // merge defaults with options in new settings object           
        settings = $.extend({}, defaults, options),
 
      // define key variables
        $accordion = this,
        $slides = $accordion.find('li'),
        slideLen = $slides.length,
        slideWidth = settings.containerWidth - (slideLen * settings.headerWidth),
        $header = $slides.children('h2'),
       
      // core utility and animation methods
        utils = {
            getGroup : function(pos, index) {     
              if (this.offsetLeft === pos.left) {
                  return $header.slice(index + 1, slideLen).filter(function() { return this.offsetLeft === $header.index(this) * settings.headerWidth });
              } else if (this.offsetLeft === pos.right) {
                  return $header.slice(0, index + 1).filter(function() { return this.offsetLeft === slideWidth + ($header.index(this) * settings.headerWidth) }); 
              }               
            },
            nextSlide : function(slideIndex) {
              var slide = slideIndex + 1 || settings.firstSlide;

              // get index of next slide
              return function() {
                  return slide++ % slideLen;
              }
            },
            play : function(slideIndex) {
              var getNext = utils.nextSlide((slideIndex) ? slideIndex : ''), // create closure
                  start = function() {
                    $header.eq(getNext()).click();
                  };
             
              utils.playing = setInterval(start, settings.cycleSpeed);       
            },
            pause : function() {
              clearInterval(utils.playing);
            },
            playing : 0,
            sentinel : false
        };     
     
      // set container heights, widths, theme & corner style
      $accordion
        .height(settings.containerHeight)
        .width(settings.containerWidth)
        .addClass(settings.theme)
        .addClass(settings.rounded && 'rounded');
     
      // set tab width, height and selected class
      $header
        .width(settings.containerHeight)
        .height(settings.headerWidth)
        .eq(settings.firstSlide - 1).addClass('selected');
     
      // ie :(
      if ($.browser.msie) {
        if ($.browser.version.substr(0,1) > 8) {
            $header.css('filter', 'none');
        } else if ($.browser.version.substr(0,1) < 7) {
            return false;
        }
      }
     
      // set initial positions for each slide
      $header.each(function(index) {
        var $this = $(this),
            left = index * settings.headerWidth;
           
        if (index >= settings.firstSlide) left += slideWidth;
       
        $this
            .css('left', left)
            .next()
              .width(slideWidth)
              .css({ left : left, paddingLeft : settings.headerWidth });
       
        // add number to bottom of tab
        settings.enumerateSlides && $this.append('<b>' + (index + 1) + '</b>');       

      }); 
           
      // bind event handler for activating slides
      $header.click(function(e) {
        var $this = $(this),
            index = $header.index($this),
            $next = $this.next(),
            pos = {
              left : index * settings.headerWidth,
              right : index * settings.headerWidth + slideWidth,
              newPos : 0
            },
            $group = utils.getGroup.call(this, pos, index);
                       
        // set animation direction
        if (this.offsetLeft === pos.left) {
            pos.newPos = slideWidth;
        } else if (this.offsetLeft === pos.right) {
            pos.newPos = -slideWidth;
        }
       
        // check if animation in progress
        if (!$header.is(':animated')) {

            // activate onclick callback with slide div as context     
            if (e.originalEvent) {
              if (utils.sentinel === this) return false;
              settings.onActivate.call($next);
              utils.sentinel = this;
            } else {
              settings.onActivate.call($next);
              utils.sentinel = false;
            }

            // remove, then add selected class
            $header.removeClass('selected').filter($this).addClass('selected');
       
            // get group of tabs & animate       
            $group
              .animate({ left : '+=' + pos.newPos }, settings.slideSpeed, function() { settings.slideCallback.call($next) })
              .next()
              .animate({ left : '+=' + pos.newPos }, settings.slideSpeed);
                 
        }
      });
       
      // pause on hover       
      if (settings.pauseOnHover) {
        $accordion.hover(function() {
            utils.pause();
        }, function() {
            utils.play($header.index($header.filter('.selected')));
        });
      }
           
      // start autoplay, call utils with no args = start from firstSlide
      settings.autoPlay && utils.play();
     
      return $accordion;
     
  };
 
})(jQuery);

Accordéon réglage
Code:
$(document).ready(function(){
$('#one').liteAccordion({
              onActivate : function() {
                  this.find('figcaption').fadeOut();
              },
              slideCallback : function() { 
                  this.find('figcaption').fadeIn();
              },
              autoPlay : true,
              pauseOnHover : true,
              theme : 'dark',
              rounded : true,
              enumerateSlides : true             
        }).find('figcaption:first').show();
});

$('#yourdiv').liteAccordion({
    theme : 'dark',
    containerWidth : 300,
    containerHeight : 200,
    slideSpeed : 400,
    firstSlide : 2
});

CSS
Code:
* Accordéon */

.accordion { text-align: left;  }
.accordion ol { position: relative; overflow: hidden; height: 100%; margin: 0; padding: 0; list-style-type: none; }
.accordion li > h2 { margin: 0; z-index: 2; position: absolute; top: 0; left: 0; -webkit-transform: translateX(-100%) rotate(-90deg); -webkit-transform-origin: right top; -moz-transform: translateX(-100%) rotate(-90deg); -moz-transform-origin: right top;
  -o-transform: translateX(-100%) rotate(-90deg); -o-transform-origin: right top; -ms-transform: translateX(-100%) rotate(-90deg); -ms-transform-origin: right top; transform: translateX(-100%) rotate(-90deg); transform-origin: right top; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
.accordion li > h2 span { display: block; padding-right: 8%; text-align: right; height:90%; margin-top: 5px; }
.accordion li > h2 b { display: inline-block; position: absolute; top: 10%; top: 42%\9; left: 10%; left: 5%\9; text-align: center; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); }
.accordion li > h2:hover { cursor: pointer; }
.accordion li > div { height: 100%; position: absolute; top: 0; z-index: 1; overflow: hidden; background: white; }

/****************************************** Basic */
.basic li > h2 { background: #333; color: white; line-height: 1.8em; }
.basic li > div h3 { margin: 15px 10px; }
.basic li > div p { margin: 10px; font-size: 14px; }

/****************************************** Dark */
.dark { border: 0px solid #FFFDF0; }
.dark li > h2 { background: #FFFDF0;}
.dark li > h2 span { background: #FFFDF0; }
.dark li > h2 b { background: #FFFDF0; }
.dark h2.selected span, .dark h2.selected span:hover { background: #FFFDF0; }
.dark h2.selected b { background: #FFFDF0; }
.dark li > div { background: #FFFDF0; }

/*************************************** Rounded */
.rounded { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; }
.rounded li > h2 span { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }

/***************************************** Light */
/**************************************** Stitch */

$('#yourdiv').liteAccordion({
    theme : 'dark',
    containerWidth : 400,
    containerHeight : 200,
    slideSpeed : 600,
    firstSlide : 2
});

************************************************************************************************************

Merci de votre aide. *O*


Dernière édition par Symphony Lips le Ven 9 Sep 2011 - 23:06, édité 1 fois
Anonymous

Invité
Invité


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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Roxy. Jeu 8 Sep 2011 - 19:16

Bonsoir,

Puis-je avoir un aperçu de votre accordéon ?

Cordialement.
Roxy.

Roxy.
Membre habitué

Féminin
Messages : 1058
Inscrit(e) le : 24/07/2011

http://roxy-test.forumgratuit.org/
Roxy. a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Lixyr Jeu 8 Sep 2011 - 20:00

Bonjour Symphonie.

Me voilà comme promis. Par contre, tu as oublié de me donner la partie html. ^^
Bon je suppose que tu as toujours le code de base :

Code:
        <div class="accordion">
            <ol>
                <li>
                    <h2><span>Slide One</span></h2>
                    <div></div>
                </li>
                <li>
                    <h2><span>Slide Two</span></h2>
                    <div></div>
                </li>
                <li>
                    <h2><span>Slide Three</span></h2>
                    <div></div>
                </li>
                <li>
                    <h2><span>Slide Four</span></h2>
                    <div></div>
                </li>
                <li>
                    <h2><span>Slide Five</span></h2>
                    <div></div>
                </li>
            </ol>
            <noscript>
                <p>Please enable JavaScript to get the full experience.</p>
            </noscript>
        </div>


Par contre, il s'affiche pas chez moi >< donc je ne peux plus tester. Me donnerais-tu ton code html si ça s'affiche chez toi ?

Ca sera plus simple.


Cordialement.


Pour faciliter les recherches, mettez un titre explicite.
Remerciez Problème avec mon accordéon, comment enlevez les chiffres ? 976083691 le message qui vous a aidé pour que celui-ci soit mis en évidence.
Épinglez votre sujet en résolu Problème avec mon accordéon, comment enlevez les chiffres ? 3592387030 pour prévenir la modération.

Problème avec mon accordéon, comment enlevez les chiffres ? Baston10
Lixyr

Lixyr
Aidactive
Aidactive

Féminin
Messages : 7381
Inscrit(e) le : 22/07/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Chacha Jeu 8 Sep 2011 - 20:25

Bonsoir

Bien que je ne voie pas votre accordéon sur votre forum, je pense qu'en remplaçant dans votre deuxième code nommé "Accordéon réglage" : à la ligne 13
Code:
enumerateSlides : true


>> remplacez par :
Code:
enumerateSlides : false


Si je propose cela, c'est que j'ai placé moi aussi cet accordéon et ai un peu "trifouillé" à tout Siffleur

Cordialement

Chacha

Chacha
Modéractif
Modéractif

Masculin
Messages : 69304
Inscrit(e) le : 21/08/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Lixyr Jeu 8 Sep 2011 - 20:29

Chachaaaa : moi aussi, mais je dois dire que j'avais trouvé comment l'enlever, via le javascript, mais n'ayant pas l'accordéon, du coup, impossible de certifier.

Et si je ne m'abuse, il y avait également une solution via le css.

Mais si ton code marche, je te remercie. Je me sens impuissante, là. Embarassed
Va savoir pourquoi rien ne s'affiche sur mon test u_u
Lixyr

Lixyr
Aidactive
Aidactive

Féminin
Messages : 7381
Inscrit(e) le : 22/07/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Chacha Jeu 8 Sep 2011 - 20:35

Bonsoir Lixyr Yrna

En fait, c'est en cherchant dans les codes JS, (puisque mon accordéon refusait de fonctionner automatiquement), que j'ai remplacé un par un les "false" par les "true" tout en regardant à chaque fois ce que cela faisait.

J'espère que cela sera correct pour la demande de Symphony Lips Wink

Cordialement
Chacha

Chacha
Modéractif
Modéractif

Masculin
Messages : 69304
Inscrit(e) le : 21/08/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Lixyr Jeu 8 Sep 2011 - 20:38

Ben c'est comme ça qu'on test. Tu as le code html sous la main ? un code qui s'affiche je veux dire..
Quoi que mon fofo semble avoir quelques problèmes d'affichage de temps en temps, j'ai quand même repris le code originel, et que dalle.

Que je continue à travailler dessus en attendant Symphonie.


Pour faciliter les recherches, mettez un titre explicite.
Remerciez Problème avec mon accordéon, comment enlevez les chiffres ? 976083691 le message qui vous a aidé pour que celui-ci soit mis en évidence.
Épinglez votre sujet en résolu Problème avec mon accordéon, comment enlevez les chiffres ? 3592387030 pour prévenir la modération.

Problème avec mon accordéon, comment enlevez les chiffres ? Baston10
Lixyr

Lixyr
Aidactive
Aidactive

Féminin
Messages : 7381
Inscrit(e) le : 22/07/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Chacha Jeu 8 Sep 2011 - 20:42

Re Lixyr Yrna

Bien sûr, voici le HTML :
Code:
<div class="accordion">
            <ol>
                <li>
                    <h2><span><span style="font-size: 18px; line-height: middle"><strong>Message d'accueil</font></strong></span></span></h2>
                    <div><div style="background-image: url(http://sd-2.archive-host.com/membres/images/97959902011429934/texture1.png); background-repeat: no-repeat; text-align: center;"><br /><br /><span style="color: blue;"><strong><br /><span style="font-size: 24px; line-height: normal;">Bienvenue {USER&amp;#8288;NAME} chez {FORUMNAME}</span> <br /><br /><br /><br /><span style="font-size: 18px; line-height: normal;"><font color="indigo">Le forum a été créé le {FORUMBIRTHDAY} <br />et existe depuis {FORUMAGE} jours</font> </span></strong></span> <br /><br /><br /><span style="font-size: 18px; line-height: normal;"><span style="color: brown;"><strong>Nous te conseillons de t'inscrire pour accéder aux nombreuses rubriques dont celles de jeux</strong></span><br /><br /></span><br /><span style="font-size: 18px; line-height: normal;"><span style="color: green;"><strong>Bonne visite, bon amusement et au plaisir de te lire<br/><br/><br/><br/></strong></span></span></div></div>

                </li>
                <li>
                    <h2><span><strong><span style="font-size: 18px; line-height: middle">Les différents jeux</span></strong></font></span></h2>
                    <div><div style="background-image: url(http://sd-2.archive-host.com/membres/images/97959902011429934/texture2.png); background-repeat: no-repeat;"><br/> <div style="margin:auto;text-align:center;width:100%"><strong><font color="darkblue"><span style="font-size: 18px; line-height: normal">Voici quelques jeux parmi ceux des admins, des anims et des membres VIP</span></font></strong></div> <br/><div><div style="margin:auto;text-align:center;width:100%"><img src="http://i47.servimg.com/u/f47/16/37/32/58/01hits10.gif" border="0" alt="" />    <img src="http://i47.servimg.com/u/f47/16/37/32/58/02soni10.gif" border="0" alt="" /><br/>
<img src="http://i47.servimg.com/u/f47/16/37/32/58/03cine10.gif" border="0" alt="" />    <img src="http://i47.servimg.com/u/f47/16/37/32/58/04comb10.gif" border="0" alt="" /><br/>
<img src="http://i47.servimg.com/u/f47/16/37/32/58/05laca10.gif" border="0" alt="" />    <img src="http://i47.servimg.com/u/f47/16/37/32/58/06avos10.gif" border="0" alt="" /><br/>
<img src="http://i47.servimg.com/u/f47/16/37/32/58/07yaht10.gif" border="0" alt="" />    <img src="http://i47.servimg.com/u/f47/16/37/32/58/08le2110.gif" border="0" alt="" /><br/>
<img src="http://i47.servimg.com/u/f47/16/37/32/58/09le4210.gif" border="0" alt="" />    <img src="http://i47.servimg.com/u/f47/16/37/32/58/10dico10.gif" border="0" alt="" /><br/><br /><br /><br /></div></div>
                </li>
                <li>
                    <h2><span><span style="font-size: 18px; line-height: middle"><strong>Les gains distribués</strong></span></font></span></h2>
                    <div><div style="background-image: url(http://sd-2.archive-host.com/membres/images/97959902011429934/texture3.png); Backlund-repeat: no-repeat;"> <br/><br/><div style="margin:auto;text-align:center;width:100%"><strong><span style="font-size: 18px; line-height: normal"><font color="darkblue">Liste des codes gagnés sur le forum</font></span></strong></div><br/>
<table style="margin: auto; height: 186px;" border="5" cellspacing="5" width="578"><tbody><tr><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>285 <font color="green">Byncodes</font> (71.25€)</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>17 <font color="green">Mimipass</font> ( 20.40€ )</strong></span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>19.20€ <font color="green">Paypal </font>( 19.20€ )</strong></span></span></td></tr><tr><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>3 <font color="green">Y-Codes</font> ( 3.90€)</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>6 <font color="green">Pack </font> ( 5.40€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>5 <font color="green">ECcodes</font> ( 5€ )</strong></span></span></td></tr><tr><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>12 <font color="green">Imailpass</font> ( 0.60€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>1 <font color="green">Geniz </font> ( 0.15€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>1 <font color="green">Namupack</font> ( 1.30€ )</strong> </span></span></td></tr><tr><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>5 <font color="green">Choco </font> ( 5.25€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>1 <font color="green">Cocoricode</font> ( 0.05€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>12 <font color="green">MT Pass</font> ( 17.00€ )</strong> </span></span></td></tr><tr><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>1 <font color="green">Servcode</font> ( 0.40€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>2 <font color="green">Tigropass </font>( 1.60€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>2 <font color="green">Coffropass</font> ( 2.60€ )</strong> </span></span></td></tr><tr><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>1 <font color="green">Cagette</font> ( 0.25€ )</strong> </span></span></td><td align="left"><span class="gensmall content" style="line-height:150%"><span style="color: blue;"><strong>18 <font color="green">Findcodes</font> ( 4.50€ )</strong> </span></span></td><td align="left"> </td></tr></tbody></table><div style="margin:auto;text-align:center;width:100%"><span class="gensmall content" style="line-height:150%"><span style="color: green;"><strong><br/><br/>Total des gains envoyés :</strong></span><strong> <span style="color: blue;">158.75 Euros</span></strong> <img src="http://r13.imgfast.net/users/1311/27/23/33/smiles/702178.gif" border="0" alt="" /> <img src="http://r13.imgfast.net/users/1311/27/23/33/smiles/702178.gif" border="0" alt="" /> <img src="http://r13.imgfast.net/users/1311/27/23/33/smiles/702178.gif" border="0" alt="" /> <br/><br/></span></div></div>
                </li>
                <li>
                    <h2><span><span style="font-size: 18px; line-height: middle"><strong>Les dernières news</strong></span></font></span></h2>
                    <div><BODY BGCOLOR="white" TEXT="black">
<MARQUEE SCROLLAMOUNT="2" DIRECTION="up" bgcolor="blue" width="100%"; height="100%">
<CENTER><FONT COLOR="yellow" SIZE="+1"><B>
<span style="font-size: 24px; line-height: normal">Nous vous souhaitons de bonnes vacances<br><br>
et, d'ores et déjà, pour ceux qui n'y sont plus...<br><br> une excellente rentrée<br><br>Bon courage à toutes et à tous  <img src="http://i35.servimg.com/u/f35/14/35/22/17/bisou10.gif" border="0" alt="" /> </span>
</B></FONT></CENTER>
</MARQUEE></div>
                </li>
                <li>
                    <h2><span><span style="font-size: 18px; line-height: middle"><strong>Navigation rapide</strong></span></font></span></h2>
                    <div><div style="background-image: url(http://sd-2.archive-host.com/membres/images/97959902011429934/texture5.png); background-repeat: no-repeat; width="><br /><br /><div style="margin:auto;text-align:center;width:100%"><strong><span style="font-size: 18px; line-height: normal"><span style="color: darkblue;">Pour votre facilité, voici les liens les plus utilisés</span></span></strong></div><div style="margin:auto;text-align:center;width:100%"><strong><span style="color: blue;">(Ils s'ouvrent dans une nouvelle fenêtre)</span></strong></div><br /><br /><br /><br /><div style="margin:auto;text-align:center;width:100%"></div><div style="text-align: center;"><a title="jeuxadmins" href="http://www.sonicodes.com/f14-jeux-des-admins" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Jeux des admins</span></strong></a>     <a title="jeuxanimateurs" href="http://www.sonicodes.com/f23-jeux-des-animateurs" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Jeux des animateurs</span></strong><br /><br /><br /><br /></a></div><div style="text-align: center;"></div><div style="text-align: center;"><a title="jeuxmembresvip" href="http://www.sonicodes.com/f30-jeux-des-vip" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Jeux des membres VIP</span></strong></a>     <a title="jeuxyahtzee" href="http://www.sonicodes.com/f3-yahtzee" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Jeu le Yahtzée</span></strong><br /><br /><br /><br /></a></div><div style="text-align: center;"></div><div style="text-align: center;"><a title="jeuxyahtzee" href="http://www.sonicodes.com/f3-yahtzee" target="_blank"><strong></strong></a><a title="lebar" href="http://www.sonicodes.com/f17-le-bar" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Le bar</span></strong></a>     <a title="lesnews" href="http://www.sonicodes.com/f10-news" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Les News</span></strong></a>     <strong><a title="livredor" href="http://www.livre-dor.net/livre.php?livredor=106505" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">Le livre d'or</span></strong><br /><br /><br /><br />
</a></strong></div><div style="text-align: center;"></div><div style="text-align: center;"><a title="listecodes" href="http://www.sonicodes.com/t21-la-boutique-du-forum" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">La boutique de codes</span></strong></a>     <a title="listeattente" href="http://www.sonicodes.com/t539-la-liste-d-attente" target="_blank"><strong><span style="font-size: 18px; line-height: normal;">La liste d'attente</span></strong></a><br /><br /><br /><br /></div></div></div>
                </li>
            </ol>
            <noscript>
                <p>Please enable JavaScript to get the full experience.</p>
            </noscript>
        </div>
        <script>
            jQuery('.accordion').liteAccordion();

Cordialement
Chacha

Chacha
Modéractif
Modéractif

Masculin
Messages : 69304
Inscrit(e) le : 21/08/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Lixyr Jeu 8 Sep 2011 - 22:31

Ton css affiche le html correctement ? Parce que l'original plante au niveau d'un endroit. Je sais lequel, il m'enlève tout contenu, le problème, c'est que plus rien ne s'affiche ensuite.

Tu peux m'envoyer le tien par MP ? (c'pas pour moi, c'est pour travailler sur le codage globale, je ne le garderai pas ^^)


Pour faciliter les recherches, mettez un titre explicite.
Remerciez Problème avec mon accordéon, comment enlevez les chiffres ? 976083691 le message qui vous a aidé pour que celui-ci soit mis en évidence.
Épinglez votre sujet en résolu Problème avec mon accordéon, comment enlevez les chiffres ? 3592387030 pour prévenir la modération.

Problème avec mon accordéon, comment enlevez les chiffres ? Baston10
Lixyr

Lixyr
Aidactive
Aidactive

Féminin
Messages : 7381
Inscrit(e) le : 22/07/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Chacha Jeu 8 Sep 2011 - 22:41

Re Lixyr Yrna

C'est fait Wink

Cordialement
Chacha

Chacha
Modéractif
Modéractif

Masculin
Messages : 69304
Inscrit(e) le : 21/08/2010

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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Invité Ven 9 Sep 2011 - 22:49

Oui, merci de vos réponses ! =D
J'ai réglé mon problème. You're the best! <3
Pour moi le souci est réglé.
Voulez-vous que je laisse le sujet ouvert ou je peux mettre résolu. =D
Anonymous

Invité
Invité


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

Résolu Re: Problème avec mon accordéon, comment enlevez les chiffres ?

Message par Chacha Ven 9 Sep 2011 - 22:53

Bonsoir Symphony Lips

Très content que votre soucis soit réglé Smile

Cordialement
Chacha

Chacha
Modéractif
Modéractif

Masculin
Messages : 69304
Inscrit(e) le : 21/08/2010

https://forum.forumactif.com/
Chacha 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