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

Mise en page CSS Discussion :

Menu déroulant full CSS


Sujet :

CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Par défaut Menu déroulant full CSS
    Salut à tous,
    Je suis entrain de réaliser un site incluant une barre de menus entièrement en images de fond
    Je rencontre un probleme lorsque je souhaite integrer sans javascript (full CSS) un menu déroulant associé à un item pour obtenir comme sur l'exemple que je vous indique en lien
    Je vous remercie a tous pour votre aide

    lien : http://www.net-productions.fr/en_cours/2m/index.htm

    Voici le code css :
    Code : 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
     
    html {
     margin: 0px auto ;
     padding: 0px auto ;
    }
    body {
     behavior:url("csshover.htc");
    }
    #global {
     margin:0px auto ;
     padding:0px auto ;
     width:850px ;
     height:850px ;
    }
    #header {
     margin:0px ;
     padding:0px ;
     width:850px ;
     height:200px ;
     background-image:url(../images/header.png);
    }
    #menu {
     clear:both ;
     margin:0px;
     padding:0px;
     width:850px;
     height:50px;
    }
    #menu_bande_gauche {
     float:left ;
     margin:0px;
     padding:0px;
     width:9px;
     height:50px;
     background-image:url(../images/menu_normal/bande_gauche.png); 
    }
    #menu_contenu {
     float:left ;
     margin:0px;
     padding:0px;
     width:832px;
     height:50px;
    }
    #menu_elements {
     margin:0px;
     padding:0px;
     width:832px;
     height:39px;
    }
    .accueil{
     float:left ;
        margin:0px;
     padding:0px;
     width:117px;
     height:39px;
    }
    .accueil a{
        display:block;
        width:100%;
        height:100%;
    }
    .accueil a:link, .accueil a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/accueil.png);
    }
    .accueil a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/accueil.png);
    }
    .pack_golf {
     float:left ;
        margin:0px;
     padding:0px;
     width:122px;
     height:39px;
    }
    .pack_golf a{
        display:block;
        width:100%;
        height:100%;
    }
    .pack_golf a:link, .pack_golf a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/pack_golf.png);
    }
    .pack_golf a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/pack_golf.png);
    }
    .hebergement {
     float:left ;
        margin:0px;
     padding:0px;
     width:120px;
     height:39px;
    }
    .hebergement a{
        display:block;
        width:100%;
        height:100%;
    }
    .hebergement a:link, .hebergement a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/hebergement.png);
    }
    .hebergement a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/hebergement.png);
    }
    .activites {
     float:left ;
        margin:0px;
     padding:0px;
     width:121px;
     height:39px;
    }
    .activites a{
        display:block;
        width:100%;
        height:100%;
    }
    .activites a:link, .activites a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/activites.png);
    }
    .activites a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/activites.png);
    }
    .qui_sommes_nous {
     float:left ;
        margin:0px;
     padding:0px;
     width:120px;
     height:39px;
    }
    .qui_sommes_nous a{
        display:block;
        width:100%;
        height:100%;
    }
    .qui_sommes_nous a:link, .qui_sommes_nous a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/qui_sommes_nous.png);
    }
    .qui_sommes_nous a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/qui_sommes_nous.png);
    }
    .cgv {
     float:left ;
        margin:0px;
     padding:0px;
     width:120px;
     height:39px;
    }
    .cgv a{
        display:block;
        width:100%;
        height:100%;
    }
    .cgv a:link, .cgv a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/cgv.png);
    }
    .cgv a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/cgv.png);
    }
    .contact {
     float:left ;
        margin:0px;
     padding:0px;
     width:112px;
     height:39px;
    }
    .contact a{
        display:block;
        width:100%;
        height:100%;
    }
    .contact a:link, .contact a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/contact.png);
    }
    .contact a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/contact.png);
    }
    #menu_bande_bas {
     margin:0px;
     padding:0px;
     width:832px;
     height:11px;
     background-image:url(../images/menu_normal/bande_bas.png);
    }
    #menu_bande_droite {
     float:left ;
     margin:0px;
     padding:0px;
     width:9px;
     height:50px;
     background-image:url(../images/menu_normal/bande_droite.png); 
    }
    #menu_bande_bas {
     margin:0px;
     padding:0px;
     width:832px;
     height:11px;
     background-image:url(../images/menu_normal/bande_bas.png); 
    }
    et le code html de mon modele :
    Code : 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
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
    <html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="identifier-url" content="<a href="http://www.2m-organisation.com" target="_blank">http://www.2m-organisation.com</a>" />
    <meta name="Description" content="" />
    <meta name="keywords" content="" />
    <meta name="reply-to" content="<a href="mailto:contact@2m-organisation.com">contact@2m-organisation.com</a>" />
    <meta name="revisit-after" content="8 day" />
    <meta name="author" content="<a href="http://www.net-productions.fr" target="_blank">http://www.net-productions.fr</a>" />
    <meta name="robots" content="all" />
    <meta name="distribution" content="Global" />
    <meta name="owner" content="<a href="mailto:contact@2m-organisation.com">contact@2m-organisation.com</a>" />
    <meta name="rating" content="General" />
    <link rel="shortcut icon" href="images/netprod.png" />
    <link href="css/page.css" rel="stylesheet" type="text/css" />
    <title>2M Organisation : Golf au Maroc, Riad, Locations Maroc, Séjour golf Maroc</title>
    </head>
    <body>
    <div id="global">
        <div id="header">
        </div>
        <div id="menu">
            <div id="menu_bande_gauche">
            </div>
            <div id="menu_contenu">
                <div id="menu_elements">
                    <div class="accueil">
                        <a href="#"></a>
        </div>
                    <div class="pack_golf">
                     <a href="#"></a>
                    </div>
                    <div class="hebergement">
                     <a href="#"></a>
                        <ul id="submenu">
                         <li><a href="index.htm">Accueil</a></li>
                            <li><a href="index.htm">Accueil</a></li>
                        </ul>
                    </div>
                    <div class="activites">
                     <a href="#"></a>
                    </div>
                    <div class="qui_sommes_nous">
                     <a href="#"></a>
                    </div>
                    <div class="cgv">
                     <a href="#"></a>
                    </div>
                    <div class="contact">
                     <a href="#"></a>
                    </div>
                </div>
                <div id="menu_bande_bas">
                </div>
            </div>
            <div id="menu_bande_droite">
            </div>
        </div>
    </div>
    </body>
    </html>
    Merci d'avance

  2. #2
    Membre éclairé Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Par défaut
    J'ai tenté en vain de m'inspirer du modele fournit dans les cours CSS de ce site http://css.developpez.com/cours/menuderoulant/ mais kenéni...
    La liste déroulante ne déroule pas...
    Je vous fournit le nouveau code :
    CSS
    Code : 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
     
    html {
     margin: 0px auto ;
     padding: 0px auto ;
    }
    body {
     behavior:url("csshover.htc");
    }
    #global {
     margin:0px auto ;
     padding:0px auto ;
     width:850px ;
     height:850px ;
    }
    #header {
     margin:0px ;
     padding:0px ;
     width:850px ;
     height:200px ;
     background-image:url(../images/header.png);
    }
    #menu {
     clear:both ;
     margin:0px;
     padding:0px;
     width:850px;
     height:50px;
    }
    #menu_bande_gauche {
     float:left ;
     margin:0px;
     padding:0px;
     width:9px;
     height:50px;
     background-image:url(../images/menu_normal/bande_gauche.png); 
    }
    #menu_contenu {
     float:left ;
     margin:0px;
     padding:0px;
     width:832px;
     height:50px;
    }
    #menu_elements {
     margin:0px;
     padding:0px;
     width:832px;
     height:39px;
    }
    div#accueil{
     float:left ;
        margin:0px;
     padding:0px;
     width:117px;
     height:39px;
    }
    div#accueil a{
        display:block;
        width:100%;
        height:100%;
    }
    div#accueil a:link, div#accueil a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/accueil.png);
    }
    div#accueil a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/accueil.png);
    }
    div#pack_golf {
     float:left ;
        margin:0px;
     padding:0px;
     width:122px;
     height:39px;
    }
    div#pack_golf a{
        display:block;
        width:100%;
        height:100%;
    }
    div#pack_golf a:link, div#pack_golf a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/pack_golf.png);
    }
    div#pack_golf a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/pack_golf.png);
    }
    div#hebergement {
     float:left ;
        margin:0px;
     padding:0px;
     width:120px;
     height:39px;
    }
    div#hebergement a{
        display:block;
        width:100%;
        height:100%;
    }
    div#hebergement a:link, div#hebergement a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/hebergement.png);
    }
    div#hebergement a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/hebergement.png);
    }
    div#activites {
     float:left ;
        margin:0px;
     padding:0px;
     width:121px;
     height:39px;
    }
    div#activites a{
        display:block;
        width:100%;
        height:100%;
    }
    div#activites a:link, div#activites a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/activites.png);
    }
    div#activites a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/activites.png);
    }
    div#qui_sommes_nous {
     float:left ;
        margin:0px;
     padding:0px;
     width:120px;
     height:39px;
    }
    div#qui_sommes_nous a{
        display:block;
        width:100%;
        height:100%;
    }
    div#qui_sommes_nous a:link, div#qui_sommes_nous a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/qui_sommes_nous.png);
    }
    div#qui_sommes_nous a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/qui_sommes_nous.png);
    }
    div#cgv {
     float:left ;
        margin:0px;
     padding:0px;
     width:120px;
     height:39px;
    }
    div#cgv a{
        display:block;
        width:100%;
        height:100%;
    }
    div#cgv a:link, div#cgv a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/cgv.png);
    }
    div#cgv a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/cgv.png);
    }
    div#contact {
     float:left ;
        margin:0px;
     padding:0px;
     width:112px;
     height:39px;
    }
    div#contact a{
        display:block;
        width:100%;
        height:100%;
    }
    div#contact a:link, div#contact a:visited{
        text-decoration:none;
        background:url(../images/menu_normal/contact.png);
    }
    div#contact a:hover{
        text-decoration:none;
        background:url(../images/menu_hover/contact.png);
    }
    #menu_bande_bas {
     margin:0px;
     padding:0px;
     width:832px;
     height:11px;
     background-image:url(../images/menu_normal/bande_bas.png);
    }
    #menu_bande_droite {
     float:left ;
     margin:0px;
     padding:0px;
     width:9px;
     height:50px;
     background-image:url(../images/menu_normal/bande_droite.png); 
    }
    #menu_bande_bas {
     margin:0px;
     padding:0px;
     width:832px;
     height:11px;
     background-image:url(../images/menu_normal/bande_bas.png); 
    }
    .submenu {
     display: none;
     list-style-type: none;
     margin: 0;
     padding: 0;
     border: 0;
    }
    .submenu li
    {
     float: none;
     margin: 0;
     padding: 0;
     border: 0;
     width: 149px;
    }
    .submenu li a:link, .submenu li a:visited
    {
     display: block;
     color: #FFF;
     margin: 0;
     border: 0;
     text-decoration: none;
    }
    .submenu li a:hover
    {
     background-image: none;
     background-color: #F2462E;
    }
    #hebergement a:hover > .submenu { display: block; }
    HTML :
    Code : 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
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
    <html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="identifier-url" content="<a href="http://www.2m-organisation.com" target="_blank">http://www.2m-organisation.com</a>" />
    <meta name="Description" content="" />
    <meta name="keywords" content="" />
    <meta name="reply-to" content="<a href="mailto:contact@2m-organisation.com">contact@2m-organisation.com</a>" />
    <meta name="revisit-after" content="8 day" />
    <meta name="author" content="<a href="http://www.net-productions.fr" target="_blank">http://www.net-productions.fr</a>" />
    <meta name="robots" content="all" />
    <meta name="distribution" content="Global" />
    <meta name="owner" content="<a href="mailto:contact@2m-organisation.com">contact@2m-organisation.com</a>" />
    <meta name="rating" content="General" />
    <link rel="shortcut icon" href="images/netprod.png" />
    <link href="css/page.css" rel="stylesheet" type="text/css" />
    <title>2M Organisation : Golf au Maroc, Riad, Locations Maroc, Séjour golf Maroc</title>
    </head>
    <body>
    <div id="global">
        <div id="header">
        </div>
        <div id="menu">
            <div id="menu_bande_gauche">
            </div>
            <div id="menu_contenu">
                <div id="menu_elements">
                    <div id="accueil">
                        <a href="#"></a>
        </div>
                    <div id="pack_golf">
                     <a href="#"></a>
                    </div>
                    <div id="hebergement">
                     <a href="#"></a>
                        <ul class="submenu">
                         <li><a href="index.htm">Accueil</a></li>
                            <li><a href="index.htm">Accueil</a></li>
                        </ul>
                    </div>
                    <div id="activites">
                     <a href="#"></a>
                    </div>
                    <div id="qui_sommes_nous">
                     <a href="#"></a>
                    </div>
                    <div id="cgv">
                     <a href="#"></a>
                    </div>
                    <div id="contact">
                     <a href="#"></a>
                    </div>
                </div>
                <div id="menu_bande_bas">
                </div>
            </div>
            <div id="menu_bande_droite">
            </div>
        </div>
    </div>
    </body>
    </html>
    Merci encore pour votre aide...

  3. #3
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Par défaut
    Il y a un très bon exemple ici : http://css.developpez.com/cours/menuderoulant/ mais bien entendu, notre ami Internet Explorer (est-ce bien notre ami, finalement ?) ne sait pas l'utiliser.

    En pratique, un menu déroulant 100% sans JavaScript n'est pas possible avec IE <= 6 (et j'ai des doutes aussi que ça passe avec IE 7) car IE <= 6 ne sait pas gérer les hover pour autre chose que les balises de liens <a>, donc c'est mort

  4. #4
    Membre éclairé Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Par défaut
    C'est justement celui que j'ai essayé d'utiliser...
    Comme tu peux le constater, mon menu est composé de div avec images de fond qui changent au survol de la souris. Lorsque la souris survol, je voudrais justement que la liste déroulante s'affiche mais je n'ai aucun résultats et je ne comprends absolument pas pourkoi...
    Merci qd meme

  5. #5
    Modérateur
    Avatar de Bisûnûrs
    Profil pro
    Développeur Web
    Inscrit en
    Janvier 2004
    Messages
    9 931
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Janvier 2004
    Messages : 9 931
    Par défaut
    Ton menu se déroule chez moi.

  6. #6
    Membre éclairé Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Par défaut
    Beinh en fait celui que je vous ai laissé en lien est réalisé en javascript chose que je souhaiterai vraiment éviter...

  7. #7
    Modérateur
    Avatar de Bisûnûrs
    Profil pro
    Développeur Web
    Inscrit en
    Janvier 2004
    Messages
    9 931
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Janvier 2004
    Messages : 9 931
    Par défaut
    Quel est l'intérêt de nous donner un code qui fonctionne si ce n'est pas celui que tu veux qu'on corrige ?

    Je capte pas la logique là ...

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Pb avec Internet Explorer pour les menu déroulant en css
    Par gaet_045 dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 07/06/2007, 08h31
  2. menu déroulant horizontal css
    Par dedel53 dans le forum Mise en page CSS
    Réponses: 1
    Dernier message: 23/01/2007, 18h33
  3. Menu déroulant avec CSS
    Par fadex dans le forum Mise en page CSS
    Réponses: 11
    Dernier message: 20/11/2006, 14h14
  4. menu déroulant en css
    Par cisse18 dans le forum Mise en page CSS
    Réponses: 25
    Dernier message: 08/06/2006, 09h12

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