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 à partir d'un fichier .css : possible ? [Débutant(e)]


Sujet :

CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre Expert
    Avatar de Sub0
    Homme Profil pro
    Développeur Web
    Inscrit en
    Décembre 2002
    Messages
    3 573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Décembre 2002
    Messages : 3 573
    Par défaut
    En fait, vu ton niveau, je ne sais pas si c'est une bonne idée de te lancer dans le PHP. Tout dépend si tu comptes continuer à créer des sites à l'avenir ou t'arrêter à celui-ci et poursuivre dans une autre activité que le développement internet... A toi de voir. Mais saches une chose, c'est que personne ne pourra t'aider à chaque fois que tu fais un pas, au point de te donner le code source de tes projets tellement ce sera plus rapide que de tout t'expliquer en détails (le forum n'est pas là pour donner des cours désolé). Arrivera bien un moment donné où tu devras te débrouiller seul. Alors autant essayer de te dépatouiller dès maintenant, même si tu galères au début (comme tous les débutants), tu récolteras les fruits de tes efforts par la suite.

    Très franchement, le PHP, c'est trop terrible !!!
    Bon courage, à+

    ps: J'aimerais bien voir comment ton menu était disposé avant que tu n'ajoutes l'iframe...

  2. #2
    Membre confirmé
    Profil pro
    Inscrit en
    Août 2005
    Messages
    65
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 65
    Par défaut
    mon menu est comme ca sans l'iframe :
    http://perso.wanadoo.fr/puissancegta...E8me/essai.htm

    et avec l'iframe ben c'est le lien que je donne au dessus

  3. #3
    Membre très actif
    Homme Profil pro
    PDG
    Inscrit en
    Septembre 2005
    Messages
    101
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 64
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : PDG
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Septembre 2005
    Messages : 101
    Par défaut
    Mais pourquoi tu ne le laisse pas comme ça ?
    C'est beaucoup mieux !

  4. #4
    Membre confirmé
    Profil pro
    Inscrit en
    Août 2005
    Messages
    65
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 65
    Par défaut
    j'ai pas envie de changer le menu dans toutes les pages de mon site, ca prends beaucoup de temps!

  5. #5
    Membre Expert
    Avatar de Sub0
    Homme Profil pro
    Développeur Web
    Inscrit en
    Décembre 2002
    Messages
    3 573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Décembre 2002
    Messages : 3 573
    Par défaut
    Tu as de la chance, ton menu vas très bien pour l'intégrer avec une iframe !
    Citation Envoyé par Link14
    j'ai pas envie de changer le menu dans toutes les pages de mon site, ca prends beaucoup de temps!
    Quoiqu'il en soit, tu vas bien être obligé de modifier le code de chacune de tes pages pour remplacer le code de ton menu par l'iframe, en admettant que tu as déjà quelques pages avec ce menu, sinon tu as bien fais d'anticiper... Par la suite, il suffira juste de modifier le script "menu.htm" pour que le menu de toutes tes pages soit modifié.

    Pour cette manip, j'ai utilisé Namo mais c'est pareil avec FrontPage je suppose...

    • J'ai enregistré ta page sans l'iframe sur mon disque dur
    • Je l'ai ouverte dans Namo
    • J'ai récupéré tout le menu en copiant/collant la cellule dans une nouvelle page html
    • J'ai également ajouté directement dans la source avec un copier/coller, le style CSS dans le header

    Cela donne donc pour menu.htm :
    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
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
    <html>
    <head>
    <title>menu</title>
    <link href="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/content.css" type="text/css"
     rel="stylesheet">
    </head>
     
    <body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
    <table border="0" cellpadding="0"
                 cellspacing="1" width="132" height="0" bgcolor="#9C9C9C">
                    <tr>
                        <td height="23" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/menu.jpg"><p>&nbsp;</td>
                    </tr>
                    <tr>
                        <td><table border="0" cellpadding="0" cellspacing="0" width="130"
                             height="33" bgcolor="white">
                                <tr>
                                    <td><div align="center"><table border="0" cellpadding="0"
                                         cellspacing="0" width="117" height="33">
                                            <tr>
                                                <td width="15"><p>&nbsp;</td>
                                                <td width="26"><p><a href="http://perso.wanadoo.fr/puissancegta/index.htm"
                                                     onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.annuaire-sites.tk');"><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/home.gif"
                                                     width="26" height="26" border="0"
                                                     alt="Mettre en page de d&eacute;marrage"></a></td>
                                                <td width="37"><p align="center"><a href="javascript:window.external.addfavorite('http://www.puissance-gta.fr.tc','Annuaire blogs, sites, forums')"
                                                     title="Ajouter mon site dans vos Favoris"><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/website.gif"
                                                     width="20" height="20" border="0"
                                                     alt="Ajouter aux favoris"></a></td>
                                                <td width="21"><p><a href="mailto:link14.online@gmail.com"
                                                     title="Envoyez moi un mail!"><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/mail2.gif"
                                                     width="20" height="22" border="0"
                                                     alt="Contact"></a></td>
                                                <td width="18"><p>&nbsp;</td>
                                            </tr>
                                        </table></div></td>
                                </tr>
                            </table></td>
                    </tr>
                </table>
                <p> 
                <table border="0" cellpadding="0" cellspacing="1" width="132" height="123"
                 bgcolor="#9C9C9C">
                    <tr>
                        <td width="152" height="23" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/menu_principal.jpg"><p>&nbsp;</td>
                    </tr>
                    <tr>
                        <td><table border="0" cellpadding="0" cellspacing="0" width="130"
                             height="106" bgcolor="white">
                                <tr>
                                    <td width="150"><table border="0" cellpadding="0"
                                         cellspacing="1" width="130" height="90">
                                            <tr>
                                                <td width="7"><p>&nbsp;</td>
                                                <td width="15"><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td width="12"><p>&nbsp;</td>
                                                <td width="111"><p><a href="http://perso.wanadoo.fr/puissancegta/index.htm">Accueil</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/wallpaper.htm">Wallpapers</a></td>
                                            </tr>
                                            <tr>
                                                <td></td>
                                                <td></td>
                                                <td></td>
                                                <td></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/contact.htm">Contacts</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td></td>
                                            </tr>
                                        </table></td>
                                </tr>
                            </table></td>
                    </tr>
                </table>
                <p> 
                <table border="0" cellpadding="0" cellspacing="1" width="132" height="150"
                 bgcolor="#9C9C9C">
                    <tr>
                        <td width="152" height="23" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/aides.jpg"><p>&nbsp;</td>
                    </tr>
                    <tr>
                        <td><table border="0" cellpadding="0" cellspacing="0" width="130"
                             height="106" bgcolor="white">
                                <tr>
                                    <td width="150"><table border="0" cellpadding="0"
                                         cellspacing="1" width="130" height="97">
                                            <tr>
                                                <td width="7"><p>&nbsp;</td>
                                                <td width="15"><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td width="12"><p>&nbsp;</td>
                                                <td width="111"><p><a href="http://perso.wanadoo.fr/puissancegta/codes-ps1.htm">Codes 
                                                    PS1</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/theme1/codesps2-th1.htm">Codes 
                                                    PS2</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/codesxbox.htm">Codes 
                                                    X-BOX</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/codes-pc.htm">Codes 
                                                    PC</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/gta-advance.htm">Codes 
                                                    GBA</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/astuces.htm">Astuces</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/paquets-caches.htm">Paquets 
                                                    cach&eacute;s</a></td>
                                            </tr>
                                        </table></td>
                                </tr>
                            </table></td>
                    </tr>
                </table>
                <p> 
                <table border="0" cellpadding="0" cellspacing="1" width="132" height="123"
                 bgcolor="#9C9C9C">
                    <tr>
                        <td width="152" height="23" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/tutoriaux.jpg"><p>&nbsp;</td>
                    </tr>
                    <tr>
                        <td><table border="0" cellpadding="0" cellspacing="0" width="130"
                             height="106" bgcolor="white">
                                <tr>
                                    <td width="150"><table border="0" cellpadding="0"
                                         cellspacing="1" width="130" height="97">
                                            <tr>
                                                <td width="7"><p>&nbsp;</td>
                                                <td width="15"><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td width="12"><p>&nbsp;</td>
                                                <td width="111"><p><a href="http://perso.wanadoo.fr/puissancegta/tutoriauxgta3.htm">GTA 
                                                    3</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/aidearmesgtapc.htm">Armes 
                                                    PC</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td><p><a href="http://perso.wanadoo.fr/puissancegta/installationskin.htm">Skins 
                                                    PC</a></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td></td>
                                            </tr>
                                            <tr>
                                                <td><p>&nbsp;</td>
                                                <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                     width="15" height="15"></td>
                                                <td><p>&nbsp;</td>
                                                <td></td>
                                            </tr>
                                        </table></td>
                                </tr>
                            </table></td>
                    </tr>
                </table>
     
    </body>
     
    </html>
    Il est important que le menu soit completement indépendant. Il débute donc avec une <table> et non pas avec un <tr> ou un <td> puisque ton menu est à la base dans une cellule de tableau... Tu noteras que ton menu devient une nouvelle page à part entière, avec un doctype, une balise html, head et body. En bref, la page que l'on appelle avec l'iframe doit être complète. Elle doit pouvoir fonctionner seule, comme n'importe quelle autre page html de ton site (on doit pouvoir l'éxécuter sans erreur). Maintenant, si tu lances la page "menu.htm", tu verras ton menu s'afficher seul dans la fenêtre. C'est exactement ça qu'il faut. Tu comprend donc qu'il s'agit d'un fichier HTML et non CSS.

    ps: J'ai été obligé de retirer les <br> de ton code ci-dessus...

    Toujours avec Namo :
    • J'ai repris le code de ta page de départ
    • J'ai supprimé la totalité du menu en sélectionnant et en coupant sa cellule
    • J'ai ajouté directement dans le code source de la page, la balise <iframe> à l'endroit exacte où débutait le menu (à la place de la cellule que je viens de couper)
    • J'ai ensuite ajusté approximativement les dimensions de l'iframe avec width=132px et height=600px pour que le menu s'affiche entièrement dans l'iframe

    Voici le code de page.htm :
    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
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <title>.:Puissance GTA:.</title>
    <link href="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/content.css" type="text/css"
     rel="stylesheet">
    </head>
     
    <body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
     
    <div align="center"><table border="0" cellpadding="0" cellspacing="0" width="750"
     height="394">
        <tr>
            <td height="70" valign="top" background="http://perso.wanadoo.fr/puissancegta/images/degrade70.gif"><div
                 align="center"><table border="0" cellpadding="0" cellspacing="0"
                 width="750" height="70">
                    <tr>
                        <td width="127" class="stylelogo"><p align="center"><img src="http://perso.wanadoo.fr/puissancegta/bani%E8re.jpg"></td>
                        <td width="459"></td>
                        <td width="114" class="stylelogo"></td>
                    </tr>
                </table></div></td>
        </tr>
        <tr>
            <td height="20"><p>&nbsp;</td>
        </tr>
        <tr>
            <td height="258"><table border="0" cellpadding="0" cellspacing="0" width="750"
                 height="209">
                    <tr>
                        <td valign="top"><iframe src="menu.htm" frameborder="0" marginwidth="0" marginheight="0" hspace="0" vspace="0" width="132px" height="600px"></iframe></td>
                        <td width="486" align="right" valign="top"><div align="center"><table
                             border="0" cellpadding="0" cellspacing="1" width="454"
                             height="548" bgcolor="#9C9C9C">
                                <tr>
                                    <td width="434" height="34" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/accueil.jpg"
                                     class="styleMenu"><p>&nbsp;</td>
                                </tr>
                                <tr>
                                    <td bgcolor="#A4BBFF"><table border="0" cellpadding="0"
                                         cellspacing="0" width="454" height="527"
                                         bgcolor="white">
                                            <tr>
                                                <td width="1%" valign="top"><p>&nbsp;</td>
                                                <td width="97%" valign="top"><p align="center"><span
                                                     class="styleecriture"><script
                                                     language="JavaScript" type="text/javascript">
    <!--
    var promobenef_site = "26028";
    var promobenef_minipub = "0";
    var promobenef_format = "1";
    //-->
                                                    </script>
                                                    </span></p>
                                                    <span class="styleecriture"><script
                                                     language="JavaScript" type="text/javascript"
                                                     src="http://www.promobenef.com/pub/"></script>
                                                    </span>
                                                    <p><span class="styleecriture"><noscript></span><span
                                                     class="styleecriture"><a href="http://www.promobenef.com/">PromoBenef 
                                                    : r&eacute;gie publicitaire<img src="http://www.promobenef.com/no_js/?sid=26028&fid=1"
                                                     width="1" height="1" border="0"></a></span><span
                                                     class="styleecriture"></noscript></span></p>
                                                    <p><span class="styleecriture"><hr
                                                     align="left"> Comme vous avez 
                                                    pus le constat&eacute;, j'ai 
                                                    fait quelques petites modifications, 
                                                    notamment le nom des menus. 
                                                    J'ai pass&eacute; plus d'une 
                                                    heure &agrave; faire ces &quot;hauts 
                                                    de menus&quot;. Je vais encore 
                                                    faire plein de petites modifications 
                                                    comme celle-l&agrave; afin que 
                                                    le site soit l'un des plus beau.@Bientot 
                                                    pour de nouvelles news! <hr align="left"> 
                                                    Ceci est une page de test pour 
                                                    la nouvelle version de Puissance 
                                                    GTA, j'esp&egrave;re qu'elle 
                                                    vous plait, si vous avez des 
                                                    remarques, n'h&eacute;sitez 
                                                    surtout pas &agrave; m'envoyer 
                                                    un mail &agrave; </span><span
                                                     class="styleecriture"><a href='link14.online@gmail.com"'>link14.online@gmail.com</a></span><span
                                                     class="styleecriture">. Je 
                                                    peut tr&egrave;s bien changer 
                                                    les couleurs ou autres si ce 
                                                    nouveau th&egrave;me ne vous 
                                                    plait pas. <hr align="left"> 
                                                    </span></p>
                                                    <p align="center"><span class="styleecriture">Copyright 
                                                    &copy; 2005 - Puissance GTA 
                                                    - Tous droits r&eacute;serv&eacute;s. 
                                                    </span><span class="styleecriture"><a href="http://www.xiti.com/xiti.asp?s=159930"
                                                     title="Mesurez votre audience"><script
                                                     language="JavaScript" type="text/javascript">
    <!--
    Xt_param = 's=159930&p=';
    Xt_r = "Hidden-Referrer";
    Xt_h = new Date();
    Xt_i = '<img width="39" height="25" border="0" ';
    Xt_i += 'src="http://logv25.xiti.com/hit.xiti?'+Xt_param;
    Xt_i += '&hl='+Xt_h.getHours()+'x'+Xt_h.getMinutes()+'x'+Xt_h.getSeconds();
    if(parseFloat(navigator.appVersion)>=4)
    {Xt_s=screen;Xt_i+='&r='+Xt_s.width+'x'+Xt_s.height+'x'+Xt_s.pixelDepth+'x'+Xt_s.colorDepth;}
    document.write(Xt_i+'&ref='+Xt_r.replace(/[<>"]/g, '').replace(/&/g, '$')+'" title="Analyse d\'audience">');
    //-->
                                                    </script>
     <noscript> analyse                                                 mesure frequentation 
                                                    internet par <img src="http://logv25.xiti.com/hit.xiti?s=159930&p="
                                                     width="39" height="25" border="0"
                                                     alt="Analyse d'audience"> </noscript></a></span></td>
                                                <td width="2%" valign="top"><p>&nbsp;</td>
                                            </tr>
                                        </table></td>
                                </tr>
                            </table></div></td>
                        <td width="132" align="right" valign="top"><table border="0"
                             cellpadding="0" cellspacing="1" width="132" height="123"
                             bgcolor="#9C9C9C">
                                <tr>
                                    <td height="23" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/san_andreas.jpg"
                                     class="stylelienmail"><p>&nbsp;</td>
                                </tr>
                                <tr>
                                    <td><table border="0" cellpadding="0" cellspacing="0"
                                         width="130" height="106" bgcolor="white">
                                            <tr>
                                                <td><table border="0" cellpadding="0"
                                                     cellspacing="1" width="130"
                                                     height="101">
                                                        <tr>
                                                            <td width="7"><p>&nbsp;</td>
                                                            <td width="15"><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td width="12"><p>&nbsp;</td>
                                                            <td width="111"><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/theme1/code_san_andreas-th1.htm">Les 
                                                                Codes</a></td>
                                                        </tr>
                                                        <tr>
                                                            <td><p>&nbsp;</td>
                                                            <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td><p>&nbsp;</td>
                                                            <td><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/theme1/astuces_san_andreas-th1.htm">Les 
                                                                Astuces</a></td>
                                                        </tr>
                                                        <tr>
                                                            <td><p>&nbsp;</td>
                                                            <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td><p>&nbsp;</td>
                                                            <td><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/persosgtasanandreas.htm">Les 
                                                                Personnages</a></td>
                                                        </tr>
                                                        <tr>
                                                            <td><p>&nbsp;</td>
                                                            <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td><p>&nbsp;</td>
                                                            <td><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/gangsgtasanandreas.htm">Les 
                                                                Gangs</a></td>
                                                        </tr>
                                                        <tr>
                                                            <td><p>&nbsp;</td>
                                                            <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td><p>&nbsp;</td>
                                                            <td><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/gta_san_andreas_infos.htm">Les 
                                                                Infos</a></td>
                                                        </tr>
                                                        <tr>
                                                            <td><p>&nbsp;</td>
                                                            <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td><p>&nbsp;</td>
                                                            <td><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/gta_san_andreas_villes.htm">Les 
                                                                Villes</a></td>
                                                        </tr>
                                                        <tr>
                                                            <td><p>&nbsp;</td>
                                                            <td><p><img src="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/puce.gif"
                                                                 width="15" height="15"></td>
                                                            <td><p>&nbsp;</td>
                                                            <td><p align="left"><a href="http://perso.wanadoo.fr/puissancegta/gta_san_andreas_videos.htm">Les 
                                                                Vid&eacute;os</a></td>
                                                        </tr>
                                                    </table></td>
                                            </tr>
                                        </table></td>
                                </tr>
                            </table>
                            <p><br> 
                            <table border="0" cellpadding="0" cellspacing="1" width="132"
                             height="123" bgcolor="#9C9C9C">
                                <tr>
                                    <td height="23" background="http://perso.wanadoo.fr/puissancegta/New%20th%E8me/Images/votez_pour_moi.jpg"
                                     class="stylelienmail"><p>&nbsp;</td>
                                </tr>
                                <tr>
                                    <td><table border="0" cellpadding="0" cellspacing="0"
                                         width="130" height="106" bgcolor="white">
                                            <tr>
                                                <td><table border="0" cellpadding="0"
                                                     cellspacing="0" width="130"
                                                     height="70">
                                                        <tr>
                                                            <td width="31" height="31"><p>&nbsp;</td>
                                                            <td width="88"><p align="center"><a href="http://www.genhit.com/in/gtavc80/sioul"><img src="http://membres.lycos.fr/gtavicecity80/partenariat/topsites.jpg"
                                                                 border="0"></a></p>
                                                                <p align="center"><a href="http://www.planetegta3.com/topdutop/in.php3?id=63"><img src="http://www.planetegta3.com/topdutop/bouton.gif"
                                                                 border="0"></a></p>
                                                                <p align="center"><a href="http://www.genhit.com/in/gtaworld/link14"><img src="http://www.GtaWorld-Fr.Com/images/gtaworld-fr.gif"
                                                                 border="0"></a></p>
                                                                <p align="center"><a href="http://genhit.com/in/tandem/link14ut"
                                                                 target="_blank"><br></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                        <tr>
                                                            <td></td>
                                                            <td></td>
                                                        </tr>
                                                    </table></td>
                                            </tr>
                                        </table></td>
                                </tr>
                            </table></td>
                    </tr>
                </table></td>
        </tr>
    </table></div>
    </body>
     
    </html>
    En résumé :
    • J'ai copié ton menu (un tableau) dans une nouvelle page
    • J'ai remplacé ce tableau par le code de l'iframe appellant cette nouvelle page
    • J'ai ajouté dans le <head> de cette page, le style CSS et j'ai supprimé les balises <br>
    • J'ai ajusté approximativement les dimensions de l'iframe en faisant des tests

    ps: J'ai repris ton code tel quel, Namo l'a réindenté malgré moi. Je voulais aussi te dire que ton code n'est vraiment pas "pro" sur pas mal de points (je ne les énumérerai pas ce soir). Ça se voit que tu débutes... Bon courage, à+

  6. #6
    Membre confirmé
    Profil pro
    Inscrit en
    Août 2005
    Messages
    65
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 65
    Par défaut
    merci, dsl de pas l'avoir vu plus tot!

  7. #7
    Membre Expert
    Avatar de Sub0
    Homme Profil pro
    Développeur Web
    Inscrit en
    Décembre 2002
    Messages
    3 573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Décembre 2002
    Messages : 3 573
    Par défaut

    Lien tout en bas à gauche de cette fenêtre

  8. #8
    SPA
    SPA est déconnecté
    Membre averti
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    16
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2004
    Messages : 16
    Par défaut
    Il y a tellement plus simple, il suffit de lire la faq HTML sur le site, on créé un menu .html, on renomme ses pages en shtml et on fait
    <!--#include file="menu.html"-->

    Et ce dans toutes les pages, tu créé un style menu dans ton cass et le tour est joué.
    Il n' y a que ce ficheir a changé sur tout ton site, et si tu utilises assez les CSS, tu peux le changer de place en changeant seulement le css.

  9. #9
    Membre Expert
    Avatar de Sub0
    Homme Profil pro
    Développeur Web
    Inscrit en
    Décembre 2002
    Messages
    3 573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Décembre 2002
    Messages : 3 573
    Par défaut
    Citation Envoyé par SPA
    Il y a tellement plus simple, il suffit de lire la faq HTML sur le site, on créé un menu .html, on renomme ses pages en shtml et on fait
    <!--#include file="menu.html"-->

    Et ce dans toutes les pages, tu créé un style menu dans ton cass et le tour est joué.
    Il n' y a que ce ficheir a changé sur tout ton site, et si tu utilises assez les CSS, tu peux le changer de place en changeant seulement le css.
    C'est exactement le même principe qu'avec PHP : Renommer l'extension de ses pages et remplacer le code du menu par une fonction include...
    J'ai proposé la solution avec l'iframe car Link14 voulait conserver ses pages en html... La différence du php avec le shtml, c'est que ce ne sont pas forcément des pages du côté serveur. La solution avec le shtml peut donc être intérressante dans certains cas (c'est toujours bon de savoir que cette solution d'intégration existe). Mais quite à changer l'extension des pages et vu l'utilisation que va en faire Link14 (un site hébergé sur serveur), autant utiliser du PHP selon moi car les possibilités offertes sont plus nombreuses.
    à+

+ Répondre à la discussion
Cette discussion est résolue.
Page 2 sur 2 PremièrePremière 12

Discussions similaires

  1. Générer un menu à partir d'un fichier XML
    Par kymior23 dans le forum XML/XSL et SOAP
    Réponses: 2
    Dernier message: 22/04/2009, 14h04
  2. Réponses: 26
    Dernier message: 13/11/2008, 16h57
  3. Réponses: 6
    Dernier message: 04/06/2008, 11h48
  4. Réponses: 15
    Dernier message: 29/04/2008, 08h45
  5. Réponses: 4
    Dernier message: 09/07/2007, 17h26

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