Erreur de guillemets

2 participants

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

Résolu Erreur de guillemets

Message par Shanyme Lun 11 Avr 2016 - 20:41

Détails techniques


Version du forum : phpBB2
Poste occupé : Fondateur
Navigateur(s) concerné(s) : Google Chrome
Capture d'écran du problème :
Voir l'image:

Personnes concernées par le problème : Moi uniquement
Problème apparu depuis : 11.04.2016
Lien du forum : elite-school.forumactif.fr/

Description du problème

Bonjour,

Je suis en train de coder mon forum, hors dans le CSS un message apparaît comme quoi il y a un nombre impair de guillemet. Mais après plusieurs relectures, je ne vois pas où est le problème.

Voici mon code :

Code:
/* DEBUT BLOC LISTE DES MEMBRES */
#LMBER {
width:700px; margin:auto;
}
/* BLOC MEMBRE */
#MBER {
float:left; width:220px; height:195px; margin:5px;
}
/* BLOC AVATAR */
#imgLMBER {
width:200px; height:160px; overflow:hidden;
}
/* SURVOL BLOC AVATAR */
#imgLMBER:hover {
box-shadow:0 0 3px rgba(0,0,0,0.1); /* MODIFIABLE */
}
/* AVATAR */
.imgLMBER {
position:relative;
width:200px; height:160px; overflow:hidden;
}
.imgLMBER div img {
position:absolute; margin-left:-100px; width:200px;
}
/* PSEUDONYME */
.nameLMBER {
position:absolute; z-index:3; margin-top:-145px; margin-left:-15px;
width:150px; height:15px; padding:5px;
text-align:left; text-transform:uppercase;
background:white; /* MODIFIABLE */
transform:rotate(-5deg); -webkit-transform:rotate(-5deg);
transition:all 0.45s linear; -webkit-transition:all 0.45s linear;
}
#imgLMBER:hover .nameLMBER {
margin-top:-160px; margin-left:0;
width:190px; height:20px; text-align:center;
transform:rotate(0deg); -webkit-transform:rotate(0deg);
}
/* INFORMATIONS */
.stsLMBER {
position:absolute; margin-top:-130px;
width:180px; height:110px; padding:10px; overflow:auto;
font-size:9px; text-align:justify;
background:rgba(0,0,0,0.7); color:white !important; /* MODIFIABLE */
opacity:0; transition:opacity 0.35s linear; -webkit-transition:opacity 0.35s linear;
}
#imgLMBER:hover .stsLMBER {
opacity:1;
}
/* NOMBRE MESSAGES & DATE D'INSCRIPTION */
.stsLMBER div {
display:inline-block; margin-bottom:5px;
width:75px; padding:5px; text-align:center;
background:white; color:black; /* MODIFIABLE */
}
/* IMAGES PROFIL & WWW */
.mpwLMBER {
display:block !important; background:none !important;
width:160px !important;
}
/* AFFICHAGE GROUPES LISTE DES MEMBRES */
.grpLMBER {
display:block; margin:5px auto;
width:190px; padding:5px;
text-transform:uppercase; font-weight:bold; font-size:12px;
border:1px solid black; /* MODIFIABLE */
}

/* DEBUT CTG */
/* HAUT CATEGORIES */
.topCAT {
margin:auto; width:800px;
border-radius:35px 35px 0 0; background:white; /* MODIFIABLE */
}
/* TITRE CATEGORIES */
.tleCAT{
text-align:center; padding:1px 0;
}
.tleCAT h2{
font-size:32px; text-transform:uppercase;
font-family:Arial; color:black; /* MODIFIABLE */
}
/* CONTENU CATEGORIES */
.mdlCAT {
margin:auto; margin-bottom:15px;
width:800px; padding:15px 0 10px;
border-radius:0 0 35px 35px; background:#575760; /* MODIFIABLE */
}
/* BLOC FORUM */
.blocFRM{
width:800px; margin:auto; text-align:center;
}
/* TITRE FORUM */
.tleFRM a{
display:inline-block;
color:black !important; /* MODIFIABLE */
transition:all 0.45s linear; -webkit-transition:all 0.45s linear;
}
/* BORDURE TITRE FORUM */
.tleFRM {
margin:auto; margin-bottom:10px;
width:750px; padding-bottom:5px;
font-family:Arial; text-align:left; font-size:18px; text-transform:uppercase; letter-spacing:5px;
border-bottom:5px dotted black; /* MODIFIABLE */
transition:all 0.45s linear; -webkit-transition:all 0.45s linear;
}
/* SURVOL TITRE FORUM */
.tleFRM:hover a{
color:#a9a9ad !important; /* MODIFIABLE */
}
/* BORDURE SURVOL TITRE FORUM */
.tleFRM:hover {
padding-left:35px; width:715px;
border-color:#a9a9ad; /* MODIFIABLE */
}
/* BLOC DESCRIPTION / AVATAR DERNIER POSTEUR / SOUS-FORUMS / DERNIER MESSAGE / NOMBRE SUJETS & MESSAGES */
.FRM {
margin:auto; margin-bottom:15px;
width:755px;
}
/* BLOC DESCRIPTION FORUM */
#descFRM {
display:inline-block;
width:400px; height:100px; overflow:hidden;
background:rgba(250,250,250,0.3); color:black; /* MODIFIABLE */
}
#descFRM div {
position:relative;
width:400px; height:100px; overflow:hidden;
}
/* DESCRIPTION FORUM */
.descFRM{
width:390px !important; height:90px !important; padding:5px !important; overflow:auto !important;
font-size:10px; text-align:justify;
}
/* IMAGE DESCRIPTIVE FORUM */
#descFRM img {
position:absolute; z-index:5; margin-left:-200px;
width:400px; height:100px;
transition:all .65s linear; -webkit-transition:all .65s linear;
}
#descFRM:hover img {
transform:translateX(-400px); -webkit-transform:translateX(-400px);
}
/* BLOC AVATAR DERNIER POSTEUR */
#avaFRM {
display:inline-block; vertical-align:top; margin:0 10px;
width:50px; height:90px; border:5px solid;
background:#ccc; border-color:rgba(250,250,250,0.3); /* MODIFIABLE */
}
/* AVATAR DERNIER POSTEUR */
.avaFRM {
width:50px; height:90px; overflow:hidden;
}
.avaFRM img {
width:60px;
}
/* BLOC SOUS-FORUMS */
.sfFRM {
display:inline-block; margin-right:10px;
width:105px; height:90px; padding:5px; overflow-y:auto; overflow-x:hidden;
line-height:6px; color:rgba(0,0,0,0);
background:rgba(250,250,250,0.5);  /* MODIFIABLE */
}
/* LIEN SOUS-FORUMS */
.sfFRM a{
display:block; padding:3px 0; line-height:12px;
text-transform:uppercase; background:white !important; color:black !important; /* MODIFIABLE */
}
/* SURVOL LIEN SOUS-FORUMS */
.sfFRM a:hover {
color:#a9a9ad !important; /* MODIFIABLE */
}
/* BLOC ICÔNES FORUM / DERNIER MESSAGE FORUM / NOMBRE SUJETS & MESSAGES */
.boxFRM {
display:inline-block; vertical-align:top;
width:150px;
}
/* BLOC ICÔNES FORUM / DERNIER MESSAGE FORUM */
.lmsgFRM {
margin-bottom:5px;
width:150px; height:75px;
}
/* ICÔNES FORUM */
.imgFRM{
width:150px; height:75px;
}
/* DERNIER MESSAGE FORUM */
.lmsgFRM div{
position:absolute; margin-top:-75px;
width:140px; height:60px; padding:10px 5px 5px;
text-align:center; font-size:10px;
background-color:rgba(250,250,250,0.9); color:black; /* MODIFIABLE */
opacity:0; transition:opacity 0.45s ease; -webkit-transition:opacity 0.45s ease;
}
.lmsgFRM:hover div {
opacity:1;
}
/* NOMBRE SUJETS ET MESSAGES FORUM */
.nbFRM {
width:150px; height:17px; padding-top:3px; overflow:hidden;
text-transform:uppercase; font-size:10px; letter-spacing:-1px;
background:rgba(250,250,250,0.3); color:black; /* MODIFIABLE */
}
/* FIN CTG */

/* DEBUT QEEL */
.QEEL {
margin:auto; width:800px;
background:none; /* MODIFIABLE */
}
/* TITRE QEEL */
.tleQEEL {
display:inline-block; vertical-align:top; margin-bottom:15px;
width:480px; height:60px; padding-top:25px; box-shadow:inset 0 0 25px rgba(0,0,0,0.2);
font-family:Arial; background:#3E2524; /* MODIFIABLE */
letter-spacing:2px; text-transform:uppercase; text-align:center;
}
.tleQEEL a{
font-size:32px;
color:white; /* MODIFIABLE */
}
/* DERNIER UTILISATEUR ENREGISTRE */
.lstQEEL {
margin-left:20px; display:inline-block;
height:65px; width:300px; padding-top:20px;
background:#dedede; color:black; /* MODIFIABLE */
text-transform:uppercase; text-align:center;
}
/* BLOC MEMBRES CONNECTES & 24H */
.ondayQEEL {
display:inline-block; vertical-align:top;
text-align:center;
width:410px; height:180px; padding:10px; overflow:hidden;
background-color:rgba(250,250,250,0.8); color:black; /* MODIFIABLE */
font-size:11px; text-align:justify;
}
.ondayQEEL:hover {
overflow:auto;
}
.ondayQEEL .row1 {
background:none; padding:0;
}
/* BLOC DESCRIPTIFS GROUPES QEEL */
.blocGQEEL {
display:inline-block; margin-left:20px;
width:350px; height:200px;
background-color:rgba(250,250,250,0.5); /* MODIFIABLE */
text-align:center;
}
.contenu_onglet {
display:none;
width:350px; height:200px; overflow:hidden;
}
/* DESCRIPTIFS GROUPES QEEL */
.contenu_onglet div {
position:absolute; z-index:3; margin-top:15px; margin-left:15px;
width:300px; height:150px; padding:10px; overflow:auto;
font-size:10px; text-align:justify;
background:rgba(250,250,250,0.5); color:black; /* MODIFIABLE */
}
.contenu_onglet img{
position:absolute; z-index:1; margin-left:-175px;
width:350px; height:200px;
opacity:0.8;
}
/* NOMBRE MESSAGES & TOTAL MEMBRES */
.tlMQEEL {
display:inline-block; vertical-align:top; margin-top:15px;
height:75px; width:145px; padding-top:25px;
background:#81614b; color:black; /* MODIFIABLE */
text-transform:uppercase; text-align:center;
}
/* ANNIVERSAIRES QEEL */
.anvQEEL {
display:inline-block; margin-left:20px; margin-top:15px;
width:470px; height:70px; padding-top:30px;
text-transform:uppercase; text-align:center; font-family:Arial; font-size:24px; font-weight:bold;
background:#191919; color:white; /* MODIFIABLE */
}
/* CONTENU ANNIVERSAIRES QEEL */
.anvQEEL div {
position:absolute; z-index:3; margin-top:-59px;
width:0px; height:80px; padding:10px; overflow:hidden;
text-align:justify !important;
background:#ccc; /* MODIFIABLE */
opacity:0; transition:all .45s linear; -webkit-transition:all .45s linear;
}
.anvQEEL:hover div{
width:450px; overflow:auto;
opacity:1;
}
.anvQEEL .row1{
background:none !important; padding:0 !important;
}
/* BLOC NOMS GROUPES QEEL */
.GQEEL {
width:800px; padding:10px 0; text-align:center;
}
/* NOMS GROUPES QEEL */
.onglet {
display:inline-block; margin:0 5px; padding:5px;
font-size:14px; font-weight:bold; text-transform:uppercase; font-family:Arial; /* MODIFIABLE */
}
/* SURVOL NOM GROUPES QEEL */
.onglet_1 {
letter-spacing:2px;
}
/*--- FIN QEEL --- */

Merci d'avance pour votre aide.


Dernière édition par Shanyme le Lun 11 Avr 2016 - 22:54, édité 1 fois
Shanyme

Shanyme
Nouveau membre

Féminin
Messages : 14
Inscrit(e) le : 13/01/2012

http://gardian.forumactif.fr/
Shanyme a été remercié(e) par l'auteur de ce sujet.
  • 0

Résolu Re: Erreur de guillemets

Message par MlleAlys Lun 11 Avr 2016 - 22:32

Bonjour,
essayez ainsi :
Code:
/* DEBUT BLOC LISTE DES MEMBRES */

#LMBER {
    width: 700px;
    margin: auto;
}


/* BLOC MEMBRE */

#MBER {
    float: left;
    width: 220px;
    height: 195px;
    margin: 5px;
}


/* BLOC AVATAR */

#imgLMBER {
    width: 200px;
    height: 160px;
    overflow: hidden;
}


/* SURVOL BLOC AVATAR */

#imgLMBER:hover {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}


/* AVATAR */

.imgLMBER {
    position: relative;
    width: 200px;
    height: 160px;
    overflow: hidden;
}

.imgLMBER div img {
    position: absolute;
    margin-left: -100px;
    width: 200px;
}


/* PSEUDONYME */

.nameLMBER {
    position: absolute;
    z-index: 3;
    margin-top: -145px;
    margin-left: -15px;
    width: 150px;
    height: 15px;
    padding: 5px;
    text-align: left;
    text-transform: uppercase;
    background: white;
    transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transition: all 0.45s linear;
    -webkit-transition: all 0.45s linear;
}

#imgLMBER:hover .nameLMBER {
    margin-top: -160px;
    margin-left: 0;
    width: 190px;
    height: 20px;
    text-align: center;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}


/* INFORMATIONS */

.stsLMBER {
    position: absolute;
    margin-top: -130px;
    width: 180px;
    height: 110px;
    padding: 10px;
    overflow: auto;
    font-size: 9px;
    text-align: justify;
    background: rgba(0, 0, 0, 0.7);
    color: white !important;
    opacity: 0;
    transition: opacity 0.35s linear;
    -webkit-transition: opacity 0.35s linear;
}

#imgLMBER:hover .stsLMBER {
    opacity: 1;
}


/* NOMBRE MESSAGES & DATE D INSCRIPTION */

.stsLMBER div {
    display: inline-block;
    margin-bottom: 5px;
    width: 75px;
    padding: 5px;
    text-align: center;
    background: white;
    color: black;
}


/* IMAGES PROFIL & WWW */

.mpwLMBER {
    display: block !important;
    background: none !important;
    width: 160px !important;
}


/* AFFICHAGE GROUPES LISTE DES MEMBRES */

.grpLMBER {
    display: block;
    margin: 5px auto;
    width: 190px;
    padding: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid black;
}


/* DEBUT CTG */


/* HAUT CATEGORIES */

.topCAT {
    margin: auto;
    width: 800px;
    border-radius: 35px 35px 0 0;
    background: white;
}


/* TITRE CATEGORIES */

.tleCAT {
    text-align: center;
    padding: 1px 0;
}

.tleCAT h2 {
    font-size: 32px;
    text-transform: uppercase;
    font-family: Arial;
    color: black;
}


/* CONTENU CATEGORIES */

.mdlCAT {
    margin: auto;
    margin-bottom: 15px;
    width: 800px;
    padding: 15px 0 10px;
    border-radius: 0 0 35px 35px;
    background: #575760;
}


/* BLOC FORUM */

.blocFRM {
    width: 800px;
    margin: auto;
    text-align: center;
}


/* TITRE FORUM */

.tleFRM a {
    display: inline-block;
    color: black !important;
    transition: all 0.45s linear;
    -webkit-transition: all 0.45s linear;
}


/* BORDURE TITRE FORUM */

.tleFRM {
    margin: auto;
    margin-bottom: 10px;
    width: 750px;
    padding-bottom: 5px;
    font-family: Arial;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    border-bottom: 5px dotted black;
    transition: all 0.45s linear;
    -webkit-transition: all 0.45s linear;
}


/* SURVOL TITRE FORUM */

.tleFRM:hover a {
    color: #a9a9ad !important;
}


/* BORDURE SURVOL TITRE FORUM */

.tleFRM:hover {
    padding-left: 35px;
    width: 715px;
    border-color: #a9a9ad;
}


/* BLOC DESCRIPTION - AVATAR DERNIER POSTEUR - SOUS-FORUMS - DERNIER MESSAGE - NOMBRE SUJETS & MESSAGES */

.FRM {
    margin: auto;
    margin-bottom: 15px;
    width: 755px;
}


/* BLOC DESCRIPTION FORUM */

#descFRM {
    display: inline-block;
    width: 400px;
    height: 100px;
    overflow: hidden;
    background: rgba(250, 250, 250, 0.3);
    color: black;
}

#descFRM div {
    position: relative;
    width: 400px;
    height: 100px;
    overflow: hidden;
}


/* DESCRIPTION FORUM */

.descFRM {
    width: 390px !important;
    height: 90px !important;
    padding: 5px !important;
    overflow: auto !important;
    font-size: 10px;
    text-align: justify;
}


/* IMAGE DESCRIPTIVE FORUM */

#descFRM img {
    position: absolute;
    z-index: 5;
    margin-left: -200px;
    width: 400px;
    height: 100px;
    transition: all .65s linear;
    -webkit-transition: all .65s linear;
}

#descFRM:hover img {
    transform: translateX(-400px);
    -webkit-transform: translateX(-400px);
}


/* BLOC AVATAR DERNIER POSTEUR */

#avaFRM {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
    width: 50px;
    height: 90px;
    border: 5px solid;
    background: #ccc;
    border-color: rgba(250, 250, 250, 0.3);
}


/* AVATAR DERNIER POSTEUR */

.avaFRM {
    width: 50px;
    height: 90px;
    overflow: hidden;
}

.avaFRM img {
    width: 60px;
}


/* BLOC SOUS-FORUMS */

.sfFRM {
    display: inline-block;
    margin-right: 10px;
    width: 105px;
    height: 90px;
    padding: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 6px;
    color: rgba(0, 0, 0, 0);
    background: rgba(250, 250, 250, 0.5);
}


/* LIEN SOUS-FORUMS */

.sfFRM a {
    display: block;
    padding: 3px 0;
    line-height: 12px;
    text-transform: uppercase;
    background: white !important;
    color: black !important;
}


/* SURVOL LIEN SOUS-FORUMS */

.sfFRM a:hover {
    color: #a9a9ad !important;
}


/* BLOC ICONES FORUM - DERNIER MESSAGE FORUM - NOMBRE SUJETS & MESSAGES */

.boxFRM {
    display: inline-block;
    vertical-align: top;
    width: 150px;
}


/* BLOC ICONES FORUM - DERNIER MESSAGE FORUM */

.lmsgFRM {
    margin-bottom: 5px;
    width: 150px;
    height: 75px;
}


/* ICONES FORUM */

.imgFRM {
    width: 150px;
    height: 75px;
}


/* DERNIER MESSAGE FORUM */

.lmsgFRM div {
    position: absolute;
    margin-top: -75px;
    width: 140px;
    height: 60px;
    padding: 10px 5px 5px;
    text-align: center;
    font-size: 10px;
    background-color: rgba(250, 250, 250, 0.9);
    color: black;
    opacity: 0;
    transition: opacity 0.45s ease;
    -webkit-transition: opacity 0.45s ease;
}

.lmsgFRM:hover div {
    opacity: 1;
}


/* NOMBRE SUJETS ET MESSAGES FORUM */

.nbFRM {
    width: 150px;
    height: 17px;
    padding-top: 3px;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: -1px;
    background: rgba(250, 250, 250, 0.3);
    color: black;
}


/* FIN CTG */


/* DEBUT QEEL */

.QEEL {
    margin: auto;
    width: 800px;
    background: none;
}


/* TITRE QEEL */

.tleQEEL {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 15px;
    width: 480px;
    height: 60px;
    padding-top: 25px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.2);
    font-family: Arial;
    background: #3E2524;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.tleQEEL a {
    font-size: 32px;
    color: white;
}


/* DERNIER UTILISATEUR ENREGISTRE */

.lstQEEL {
    margin-left: 20px;
    display: inline-block;
    height: 65px;
    width: 300px;
    padding-top: 20px;
    background: #dedede;
    color: black;
    text-transform: uppercase;
    text-align: center;
}


/* BLOC MEMBRES CONNECTES & 24H */

.ondayQEEL {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 410px;
    height: 180px;
    padding: 10px;
    overflow: hidden;
    background-color: rgba(250, 250, 250, 0.8);
    color: black;
    font-size: 11px;
    text-align: justify;
}

.ondayQEEL:hover {
    overflow: auto;
}

.ondayQEEL .row1 {
    background: none;
    padding: 0;
}


/* BLOC DESCRIPTIFS GROUPES QEEL */

.blocGQEEL {
    display: inline-block;
    margin-left: 20px;
    width: 350px;
    height: 200px;
    background-color: rgba(250, 250, 250, 0.5);
    text-align: center;
}

.contenu_onglet {
    display: none;
    width: 350px;
    height: 200px;
    overflow: hidden;
}


/* DESCRIPTIFS GROUPES QEEL */

.contenu_onglet div {
    position: absolute;
    z-index: 3;
    margin-top: 15px;
    margin-left: 15px;
    width: 300px;
    height: 150px;
    padding: 10px;
    overflow: auto;
    font-size: 10px;
    text-align: justify;
    background: rgba(250, 250, 250, 0.5);
    color: black;
}

.contenu_onglet img {
    position: absolute;
    z-index: 1;
    margin-left: -175px;
    width: 350px;
    height: 200px;
    opacity: 0.8;
}


/* NOMBRE MESSAGES & TOTAL MEMBRES */

.tlMQEEL {
    display: inline-block;
    vertical-align: top;
    margin-top: 15px;
    height: 75px;
    width: 145px;
    padding-top: 25px;
    background: #81614b;
    color: black;
    text-transform: uppercase;
    text-align: center;
}


/* ANNIVERSAIRES QEEL */

.anvQEEL {
    display: inline-block;
    margin-left: 20px;
    margin-top: 15px;
    width: 470px;
    height: 70px;
    padding-top: 30px;
    text-transform: uppercase;
    text-align: center;
    font-family: Arial;
    font-size: 24px;
    font-weight: bold;
    background: #191919;
    color: white;
}


/* CONTENU ANNIVERSAIRES QEEL */

.anvQEEL div {
    position: absolute;
    z-index: 3;
    margin-top: -59px;
    width: 0px;
    height: 80px;
    padding: 10px;
    overflow: hidden;
    text-align: justify !important;
    background: #ccc;
    opacity: 0;
    transition: all .45s linear;
    -webkit-transition: all .45s linear;
}

.anvQEEL:hover div {
    width: 450px;
    overflow: auto;
    opacity: 1;
}

.anvQEEL .row1 {
    background: none !important;
    padding: 0 !important;
}


/* BLOC NOMS GROUPES QEEL */

.GQEEL {
    width: 800px;
    padding: 10px 0;
    text-align: center;
}


/* NOMS GROUPES QEEL */

.onglet {
    display: inline-block;
    margin: 0 5px;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Arial;
}


/* SURVOL NOM GROUPES QEEL */

.onglet_1 {
    letter-spacing: 2px;
}


/*--- FIN QEEL --- */

Méfiez vous notamment des apostrophes dans les commentaires, qui ne sont pas des erreurs, mais que l'éditeur compte comme un guillemet quand même.
MlleAlys

MlleAlys
Membre actif

Messages : 5793
Inscrit(e) le : 12/09/2012

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

Résolu Re: Erreur de guillemets

Message par Shanyme Lun 11 Avr 2016 - 22:54

Merci de ton aide MlleAlys, j'ai mis le Css et tout est ok, même si visuellement je ne vois pas la différence xDD

Mais vaut mieux un code ok qui semble invisible, qu'un mauvais code qui sera visible plus tard.
Shanyme

Shanyme
Nouveau membre

Féminin
Messages : 14
Inscrit(e) le : 13/01/2012

http://gardian.forumactif.fr/
Shanyme 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