IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

Comportement différent entre Safari et Chrome


Sujet :

Langage PHP

  1. #1
    Membre du Club
    Homme Profil pro
    Cobol sur Mainframe et Unix AIX
    Inscrit en
    Mars 2012
    Messages
    196
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Cobol sur Mainframe et Unix AIX

    Informations forums :
    Inscription : Mars 2012
    Messages : 196
    Points : 69
    Points
    69
    Par défaut Comportement différent entre Safari et Chrome
    Bonjour,

    Je gère le site de mon club : http://www.scf.asso.fr.

    Je suis sous Mac.
    Je constate un comportement dans l'affichage du menu : fond jaune sur Safari et noir sur Chrome.

    Je ne vois pas d'où ça peut venir. Je pensais au cache car avant le menu était effectivement en noir, mais après l'avoir vidé sous Chrome, ça ne change rien. Des copains m'indiquent que c'est également en noir chez eux sur Windows.

    Où lancer mes recherches ?

    Sur mon serveur local, c'est OK également sous Chrome

    Merci pour votre aide.

    Eddy

    PS : voici le cas si ça peut aider
    Code CSS : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    @import url('http://fonts.googleapis.com/css?family=Amarante');
     
    /*---------------------------------------------------------------------------------
         Style pour la galerie photos de MiniGal Nano
         
    */
    body {
    	margin: 0 auto;
    	padding: 0;
    	/*width: <% gallery_width %>;*/
    	font: 12px Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	background: #F781F3;/*#272727;*/
    	background:url('../images/Fond_ecran/octobre_rose.jpeg') fixed  ;
    	color: #1C6894;
    }
     
    .credits {
    	border-bottom: solid 1px #434343;
    	padding-bottom: 5px;
    	margin-bottom: 5px;
    	color: #CF8D26;
    	font: 100% "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    }
    .credits em {
    	color: #BDBDBD;
        font-style: normal;
        font-style: normal;
    }
     
    .backlink a {
    	font-size: 10px;
    	text-decoration: none;
    	color: #666;
    }
    .backlink a:hover,
    .backlink a:visited:hover {
    	color: #888;
    }
    img {
    	border: none;
    }
    #page_nav {
    	color: #BDBDBD;
    	clear:both;
    	text-align: center;
    }
    #page_nav a:link, #page_nav a:visited, #page_nav a:hover, #page_nav a:visited:hover {
    	text-decoration: none;
    	color: #FFCC11;
    }
    #breadcrumb_nav {
    	color: #BDBDBD;
    	font-weight: bold;
    }
    #breadcrumb_nav a:link, #breadcrumb_nav a:visited, #breadcrumb_nav a:hover, #breadcrumb_nav a:visited:hover {
    	text-decoration: none;
    	color: #FFCC11;
    }
    a {
    	color: #FFCC11;
    }
    #container {
    	overflow: auto;
    	width: 100%
    }
    .hidden {
    	visibility: hidden;
    	position:absolute;
    	top:0;
    	left:0;
    	display:inline;
    }
    #topbar {
    	border-bottom-color: #afafaf;
    	border-style: none;
    	color: black;
    	position: absolute;
    	left: 0;
    	top: 0;
    	margin: 0;
    	padding-top: 5px;
    	float: none;
    	width: 100%;
    	height: 25px;
    	text-align: center;
    	background-color: #FFFF99;
    	border-bottom: 1px solid;
    }
    #topbar a:link, #topbar a:visited, #topbar a:hover, #topbar a:visited:hover {
    	text-decoration: underline;
    	color: #000;
    }
    #topbar img{
    	position: absolute;
    	right: 6;
    	top: 6;
    	vertical-align: middle;
    }
     
    #folder_comment
    {
     margin-bottom:10px;
    }
     
    #folder_comment a {
    	color: #FFCC11;
                  text-decoration: none;
     
    }
    /* ---------- gallery styles start here ----------------------- */
    .gallery {
    	list-style: none;
    	margin: 0;
    	padding: 0;
    }
    .gallery li {
    	padding: 1px;
    	margin: 0;
    	float: left;
    	position: relative;
    	width: 120px;
    	height: 120px;
    	overflow:hidden;
    }
    .gallery li:hover img {
    	background: #ddd;
    	filter: alpha(opacity=70);
    	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
    	-moz-opacity: 0.70;
    	opacity:0.7;
    }
    .gallery img {
    	background: #000;
    	color: #666;
    }
    .gallery em {
    	background: #000;
    	color: #FFCC11;
    	font-family: "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	font-style: normal;
    	font-weight: bold;
    	font-size: 14px;
    	padding: 2px 2px;
    	display: block;
    	position: absolute;
    	top: 90px;
    	left: 1px;
    	width: 116px;
    	height: 20px;
    	filter: alpha(opacity=60);
    	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
    	-moz-opacity: 0.60;
    	opacity:0.6;
    }
    .gallery em-pdf {
    	color: #666;
    	font-style: normal;
    	font-size: 10px;
    	padding: 3px 7px;
    	display: block;
    	position: absolute;
    	top: 100px;
    	left: 0px;
    }
    .gallery a {
    	text-decoration: none;
    }
    .gallery a:hover em {
    	background: grey;
    	color: black;
    }
    /*----------------------------------------------------------------------------------------*/
     
     
     
    A:LINK    { color: #3F3986; text-decoration: underline;}
    A:VISITED { color: #3F3986; text-decoration: underline;}
    A:HOVER   { background: #FFEEBB; }
    a:active  { color: blue;}
     
    html{
    	margin:0px;
    	padding:0px;
    	/*background:url('../images/Fond_Ecran/pygmee_denise.jpg') no-repeat fixed width=10% height=10%;*/
    	/*background:url('../images/Fond_ecran/dauphin.jpg') no-repeat fixed ;/*
    	/*background:url('../images/Lotte_Hermance.jpg) no-repeat fixed ;*/
    	/*background:url('../images/Fond_Ecran/tortue-550x365.jpg') no-repeat center fixed;*/
    	/*background:url('../images/Fond_Ecran/fond02.jpeg') no-repeat center fixed;*/
    	/*background:url('<?php require_once 'fonctions/fonctions_generales.php';$nom_file="../" . Generer_Fond_Ecran_Aleatoire(); echo $nom_file;?>') no-repeat center fixed;*/
    	background-size:cover;
    	font-size:13px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        line-height: 1;
        padding-bottom: 55px;
    }
     
    h1 {
    	font: normal 250%/100% "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	margin: 20px 0 5px 0;
    	letter-spacing: -1px;
    	color: #FFCC11;	
    	text-shadow: #000000 2px 2px 2px;
    }
     
     
    h1A { 
    	/*
    	font-weight: bold;
    	font-size: 2.0em;
    	line-height: 0.7em;
    	margin-bottom: 10px;
    	*/
    	font-family: 'Amarante', Tahoma, sans-serif;
    	text-align: center;
    	font: normal 250%/100% "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	margin: 20px 0 5px 0;
    	letter-spacing: -1px;
    	color: #FFCC11;	
    	text-shadow: #000000 2px 2px 2px;
    }
     
    h3 { 
      font-family: 'Courrier', Tahoma, sans-serif;
      font-weight: bold;
      font-size: 1.0em;
      line-height: 1.0em;
      margin-bottom: 00px;
      text-align: center;
    }
     
    h4 { 
      font-family: "Times New Roman", Times, serif; /*'Courrier', Tahoma, sans-serif;*/
      font-style: oblique;
      font-variant: small-caps;
      font-weight: lighter;
      font-size: 1.2em;
      line-height: 1.0em;
      margin-bottom: 00px;
      text-align: center;
    }
     
     
    #msgerreur { 
      font-family:"Times New Roman", Times, serif;
      font-weight: bold;
      font-size: 1.5em;
      text-align: center;
      color:red;
    }
     
    #msginfo { 
      font-family:"Times New Roman", Times, serif;
      font-weight: normal;
      font-size: 1.5em;
      text-align: center;
      color:blue;
    }
     
    #msginf2 { 
      font-family:"Times New Roman", Times, serif;
      font-weight: normal;
      font-size: 1.2em;
      text-align: center;
      color:green;
    }
     
    p.serif {
        font-family: "Times New Roman", Times, serif;
    }
    p.sansserif {
        font-family: Arial, Helvetica, sans-serif;
    }
     
    em {
      font-weight: bold;
      font-style: normal;
      color: #f00;
    }
     
    #corp{
    	width:1350px; /* définit la largeur d'affichage */
    	margin:0 auto; /* center automatiquement au milieu */
    	padding:0px;
    	background:#FFF; /* Blanc */
    	position:relative;
    }
     
    #banniere{
    	width:100%;
    	margin:0px;
    	padding:0px;
    	height:80px;
    }
     
    #menu{
    	width:100%;
    	margin:0px;
    	padding:0px;
    	height:40px;
    }
     
    /*
    #footer{
    	width:100%;
    	margin:0px;
    	padding:0px;
    	height:65px;
    	background:#333333;
    }
    */
    #content{
    	margin:0px;
    	padding:15px;
    	background:#EFEFEF; /* gris */
    	position:relative;
    }
     
    #bloc{
    	width:1200px;
    	margin:0 auto;
    	padding:15px;
    	border:1px solid gray;
    	background:#FFF;
    }
     
    #bloc2{
    	width:800px;
    	margin:0 auto;
    	padding:15px;
    	border:1px solid gray;
    	background:#FFF;
    }
     
    #form_inscription label{
    	width:150px;
    	display:inline-block;
    	font-weight:bold;
    	text-decoration:underline;
    	text-align: right;
    	padding:8px;
    }
     
    #form_inscription input[type=submit], #form_inscription input[type=reset]{
    	width:120px;
    	display:inline-block;
    	color:#333333;
    	padding:2px;
    }
     
    ul {
    list-style:none;
    margin-left:0;
    padding-left:50;
    }
     
    /* Taille entre les lignes -  Laisser à 0, sinon fait varier l'espace dans le menu */
    /*
    li {
    margin-bottom:0px;
    }
    */
    li2 {
    margin-bottom:50px;
    }
     
    .marge {
    margin-left: 5em;
    }
     
    /* -----   Tableau   -------*/
     
    ::selection { background: #5f74a0; color: #fff; }
    ::-moz-selection { background: #5f74a0; color: #fff; }
    ::-webkit-selection { background: #5f74a0; color: #fff; }
     
    br { display: block; line-height: 1.6em; } 
     
    article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
    ol, ul { list-style: none; }
     
    input, textarea { 
      -webkit-font-smoothing: antialiased;
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      outline: none; 
    }
     
    blockquote, q { quotes: none; }
    blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
    strong, b { font-weight: bold; } 
     
    table { border-collapse: collapse; border-spacing: 0; }
    img { border: 0; max-width: 100%; }
     
    /** page structure **/
     
     
    #wrapper {
      display: block;
      width: 1000px; 
      background: #fff;
      margin: 0px auto;
      padding: 10px 10px;
      -webkit-box-shadow: 8px 8px 3px -1px rgba(0,0,0,0.35);
    }
     
    #keywords {
      margin: 0 auto;
      font-size: 1.0em;
      margin-bottom: 15px;
    }
     
     
    #keywords thead {
      cursor: pointer;
      background: #c9dff0;
    }
    #keywords thead tr th { 
      font-weight: bold;
      padding: 12px 30px;
      padding-left: 42px;
    }
    #keywords thead tr th span { 
      padding-right: 50px;
      background-repeat: no-repeat;
      background-position: 100% 100%;
    }
     
    #keywords thead tr th.headerSortUp, #keywords thead tr th.headerSortDown {
      background: #acc8dd;
    }
     
    #keywords thead tr th.headerSortUp span {
      background-image: url('http://i.imgur.com/SP99ZPJ.png');
    }
    #keywords thead tr th.headerSortDown span {
      background-image: url('http://i.imgur.com/RkA9MBo.png');
    }
     
     
    #keywords tbody tr { 
      color: #555;
    }
    #keywords tbody tr td {
      text-align: center;
      padding: 5px 0px;
    }
    #keywords tbody tr td.lalign {
      text-align: left;
    }
     
     
    /* GALLERIE PHOTO */
    /*body {
    	margin: 0 auto;
    	padding: 0;
    	width: <% gallery_width %>;
    	font: 12px Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	background: #272727;
    	color: #BDBDBD;
    h1 {
    	font: normal 250%/100% "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	margin: 20px 0 5px 0;
    	letter-spacing: -1px;
    	color: #FFCC11;	
    	text-shadow: #000000 2px 2px 2px;
    }
    */
    .credits {
    	border-bottom: solid 1px #434343;
    	padding-bottom: 5px;
    	margin-bottom: 5px;
    	color: #CF8D26;
    	font: 100% "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    }
    .credits em {
    	color: #BDBDBD;
        font-style: normal;
        font-style: normal;
    }
    .backlink a {
    	font-size: 10px;
    	text-decoration: none;
    	color: #666;
    }
    .backlink a:hover,
    .backlink a:visited:hover {
    	color: #888;
    }
    img {
    	border: none;
    }
    #page_nav {
    	color: #BDBDBD;
    	clear:both;
    	text-align: center;
    }
    #page_nav a:link, #page_nav a:visited, #page_nav a:hover, #page_nav a:visited:hover {
    	text-decoration: none;
    	color: #FFCC11;
    }
    #breadcrumb_nav {
    	color: #BDBDBD;
    	font-weight: bold;
    }
    #breadcrumb_nav a:link, #breadcrumb_nav a:visited, #breadcrumb_nav a:hover, #breadcrumb_nav a:visited:hover {
    	text-decoration: none;
    	color: #FFCC11;
    }
    a {
    	color: #FFCC11;
    }
    #container {
    	overflow: auto;
    	width: 100%
    }
    .hidden {
    	visibility: hidden;
    	position:absolute;
    	top:0;
    	left:0;
    	display:inline;
    }
    #topbar {
    	border-bottom-color: #afafaf;
    	border-style: none;
    	color: black;
    	position: absolute;
    	left: 0;
    	top: 0;
    	margin: 0;
    	padding-top: 5px;
    	float: none;
    	width: 100%;
    	height: 25px;
    	text-align: center;
    	background-color: #FFFF99;
    	border-bottom: 1px solid;
    }
    #topbar a:link, #topbar a:visited, #topbar a:hover, #topbar a:visited:hover {
    	text-decoration: underline;
    	color: #000;
    }
    #topbar img{
    	position: absolute;
    	right: 6;
    	top: 6;
    	vertical-align: middle;
    }
     
    #folder_comment
    {
     margin-bottom:10px;
    }
     
    #folder_comment a {
    	color: #FFCC11;
                  text-decoration: none;
     
    }
    /* ---------- gallery styles start here ----------------------- */
    .gallery {
    	list-style: none;
    	margin: 0;
    	padding: 0;
    }
    .gallery li {
    	padding: 1px;
    	margin: 0;
    	float: left;
    	position: relative;
    	width: 120px;
    	height: 120px;
    	overflow:hidden;
    }
    .gallery li:hover img {
    	background: #ddd;
    	filter: alpha(opacity=70);
    	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
    	-moz-opacity: 0.70;
    	opacity:0.7;
    }
    .gallery img {
    	background: #000;
    	color: #666;
    }
    .gallery em {
    	background: #000;
    	color: #FFCC11;
    	font-family: "Trebuchet MS",Tahoma,Verdana,Arial,Helvetica, sans-serif;
    	font-style: normal;
    	font-weight: bold;
    	font-size: 14px;
    	padding: 2px 2px;
    	display: block;
    	position: absolute;
    	top: 90px;
    	left: 1px;
    	width: 116px;
    	height: 20px;
    	filter: alpha(opacity=60);
    	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
    	-moz-opacity: 0.60;
    	opacity:0.6;
    }
    .gallery em-pdf {
    	color: #666;
    	font-style: normal;
    	font-size: 10px;
    	padding: 3px 7px;
    	display: block;
    	position: absolute;
    	top: 100px;
    	left: 0px;
    }
    .gallery a {
    	text-decoration: none;
    }
    .gallery a:hover em {
    	background: grey;
    	color: black;
    }

  2. #2
    Membre du Club
    Homme Profil pro
    Cobol sur Mainframe et Unix AIX
    Inscrit en
    Mars 2012
    Messages
    196
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Cobol sur Mainframe et Unix AIX

    Informations forums :
    Inscription : Mars 2012
    Messages : 196
    Points : 69
    Points
    69
    Par défaut
    pour info, ça fonctionne également sous Edge

  3. #3
    Expert éminent Avatar de CosmoKnacki
    Homme Profil pro
    Justicier interdimensionnel
    Inscrit en
    Mars 2009
    Messages
    2 858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Charente Maritime (Poitou Charente)

    Informations professionnelles :
    Activité : Justicier interdimensionnel

    Informations forums :
    Inscription : Mars 2009
    Messages : 2 858
    Points : 6 556
    Points
    6 556
    Par défaut
    Où lancer mes recherches ?
    Dans le sous-forum CSS probablement.

    Je ne saurais trop te conseiller d'isoler autant que faire se peut les parties du code CSS qui concernent ton problème et aussi de donner le code HTML correspondant à ton menu. Également, précise les numéros de versions des navigateurs.
    Brachygobius xanthozonus
    Ctenobrycon Gymnocorymbus

Discussions similaires

  1. Comportement différent entre IE6 et IE7
    Par Zeo34 dans le forum Intégration
    Réponses: 1
    Dernier message: 12/11/2008, 12h24
  2. ComboBox.DropDownCount, comportement différent entre 2000 et XP
    Par Jipété dans le forum Composants VCL
    Réponses: 4
    Dernier message: 10/11/2007, 18h32
  3. Réponses: 12
    Dernier message: 26/10/2007, 16h27
  4. [AJAX] Comportement différent entre IE et FF2
    Par pacopau dans le forum Général JavaScript
    Réponses: 1
    Dernier message: 14/02/2007, 19h18
  5. Comportement différent entre un bouton et une image
    Par MicheMTP13 dans le forum Général JavaScript
    Réponses: 11
    Dernier message: 07/11/2005, 08h47

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo