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 :

Bloquer l'agrandissement de la police ou alternative


Sujet :

CSS

  1. #1
    Membre averti
    Inscrit en
    Novembre 2006
    Messages
    17
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 17
    Par défaut Bloquer l'agrandissement de la police ou alternative
    Bonjour,

    J'ai realisé un template qui utilise des tableau dans lesquels les images se melangent au texte et aux inputs.
    Lorsque je définis une police trop grande pour mes éléments de texte, tout le tableau s'en trouve chamboulé et le template n'a plus sa "belle" allure.
    Or il est possible à l'utilisateur de grossir la taille des polices (CTRL+molette) et là malheur, tout est chamboulé.
    Comment spécifier au navigateur que l'agrandissement n'est pas autorisé (ça me gène un peu vis à vis des mal-voyants )

    Ou sinon quelle est la solution alternative que vous voyez ?
    Sachant que la structure du tableau organisant les élément du template a été créée automatiquement par un logiciel du type imageReady et qu'il génère un code et un découpage un peu décourageant

  2. #2
    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
    Si tu définis des styles, l'agrandissement ne se fera plus sur IE.

    Mais tu ne peux pas empêcher l'utilisateur d'agrandir le texte sur Firefox.

  3. #3
    Membre averti
    Inscrit en
    Novembre 2006
    Messages
    17
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 17
    Par défaut
    Merci de ta réponse, ça sera dejà un point plus simple lorsque je ferai mes tests sur IE.
    Cependant, il semble que ce ne soit pas la taille de la police définie dans le style qui soit complètement responsable du chamboulement du template... ainsi lorsque je modifie la taille de police dans le code suivant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    	body, table{
    		font-size:6pt;
    		font-family:'Comic Sans MS';
    	}
    Je n'obtiens pas le même résultat que lorsque je CTRL+molette sur ma page...

    Un exemple étant plus clair que mon discours :

    Voici l'aspect du site lorsque l'affichage du navigateur est réglé sur taille 0 (normal)


    voici l'aspect lorsque l'affichage du navigateur est toujours sur 0 (normal) mais que la taille de la police a été redéfinie dans le style...


    et voici l'aspect avec la taille de la police dans le style comme pour la première image, mais un affichage (CTRL+molette) plus petit...



    Il semble que la taille de mes polices definies dans le CSS ne correspondent pas a l'action que j'ai lorsque je change l'affichage dans le navigateur...
    Comment peut t'on forcer le navigateur à se caler comme il faut ?

    Merci.

  4. #4
    Membre averti
    Inscrit en
    Novembre 2006
    Messages
    17
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 17
    Par défaut
    J'ai trouvé que ça venait de mes textbox (input) qui n'avaient pas de style css défini dans leur cas.
    Bref je galère avec ces aspects graphiques, mais bon... ca forme la jeunesse parait t'il

  5. #5
    Membre averti
    Inscrit en
    Novembre 2006
    Messages
    17
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 17
    Par défaut
    Sous IE


    Sous firefox affichage normal du navigateur...



    Sous firefox, affichage agrandi du navigateur...



    Je n'arrive pas a faire evoluer mon CSS pour qu'il puisse afficher le texte de la meme manière que la 3ème image, mais par défaut !
    Dès que je touche à la taille des polices, tout fout le camp

    sachant que les zones de login et les zones de password sont des input et que le texte est dans un tableau.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    	body, table {
    		font-size:8px;
    		font-family:'Comic Sans MS';
    	}
    	input{
    		font-size:8px;
    		font-family:'Comic Sans MS';
    En gros, j'aimerai arriver à la 3ème image.

  6. #6
    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
    Mets 10px à la place de 8px ...

  7. #7
    Membre averti
    Inscrit en
    Novembre 2006
    Messages
    17
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 17
    Par défaut
    ...


    voici le résultat sous IE. avec une taille de 10pixel pour les tableaux
    Merci de m'avoir fait remarquer que je n'avais pas mis cette capture d'ecran dans mon post précédent.

  8. #8
    Membre averti
    Inscrit en
    Novembre 2006
    Messages
    17
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 17
    Par défaut
    J'ai bien compris que sans le code ca devient plus difficile de m'aider... voila la "beauté" que m'a généré le pseudo ImageReady... je pense que meme une chatte aurait ud mal a y retrouver ses petits.
    J'y ai inséré mes deux blocs de texte perso (liste_nvl et liste_cmt) (au milieu du bazar ) et il y a aussi les 3 inputs (recherche, login, passwd)

    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
    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
     
    echo "
     
    <html>
    <head>
    <title>testiamiam</title>
    <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
    <script type='text/javascript' src='popup2.js'></script>
    <style type='text/css'>
    <!--
    @import url(styles/popup.css);
    -->
    	body, table {
    		font-size:10px;
    		font-family:'Comic Sans MS';
    	}
    	input{
    		font-size:10px;
    		font-family:'Comic Sans MS';
    </style>
    </head>
    <body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>
    <center>
    <table id='main' width='1025' height='769' border='0' cellpadding='0' cellspacing='0'>
    	<tr>
    		<td rowspan='27'>
    			<img src='images/index_01.gif' width='15' height='768' alt=''></td>
    		<td colspan='9' rowspan='5'>
    			<img src='images/main_logo.gif' width='175' height='90' alt=''></td>
    		<td colspan='38'>
    			<img src='images/index_03.gif' width='834' height='14' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='14' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='14' rowspan='2'>
    			<img src='images/index_04.gif' width='563' height='28' alt=''></td>
    		<td colspan='4'>
    			<a href='index.php'>
    				<img src='images/main_accueil.gif' width='37' height='11' border='0' alt=''></a></td>
    		<td colspan='2' rowspan='5'>
    			<img src='images/index_06.gif' width='13' height='95' alt=''></td>
    		<td colspan='2'>
    			<a href='login.php'>
    				<img src='images/main_login.gif' width='28' height='11' border='0' alt=''></a></td>
    		<td colspan='3' rowspan='5'>
    			<img src='images/index_08.gif' width='14' height='95' alt=''></td>
    		<td colspan='4'>
    			<a href='plan.php'>
    				<img src='images/main_plan.gif' width='31' height='11' border='0' alt=''></a></td>
    		<td rowspan='5'>
    			<img src='images/index_10.gif' width='15' height='95' alt=''></td>
    		<td colspan='4'>
    			<a href='mailto:toto@toto.com'>
    				<img src='images/main_contact.gif' width='35' height='11' border='0' alt=''></a></td>
    		<td colspan='4' rowspan='5'>
    			<img src='images/index_12.gif' width='98' height='95' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='11' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='4'>
    			<img src='images/index_13.gif' width='37' height='17' alt=''></td>
    		<td colspan='2' rowspan='4'>
    			<img src='images/index_14.gif' width='28' height='84' alt=''></td>
    		<td colspan='4' rowspan='4'>
    			<img src='images/index_15.gif' width='31' height='84' alt=''></td>
    		<td colspan='4' rowspan='4'>
    			<img src='images/index_16.gif' width='35' height='84' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='17' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='24'>
    			<img src='images/index_17.gif' width='52' height='726' alt=''></td>
    		<td colspan='2'>
    			<a href='pc.php'>
    				<img src='images/main_pc.gif' width='74' height='20' border='0' alt=''></a></td>
    		<td rowspan='3'>
    			<img src='images/index_19.gif' width='49' height='67' alt=''></td>
    		<td>
    			<a href='macintosh.php'>
    				<img src='images/main_macintosh.gif' width='111' height='20' border='0' alt=''></a></td>
    		<td rowspan='3'>
    			<img src='images/index_21.gif' width='42' height='67' alt=''></td>
    		<td colspan='3'>
    			<a href='ibm.php'>
    				<img src='images/main_ibm.gif' width='100' height='20' border='0' alt=''></a></td>
    		<td colspan='4' rowspan='3'>
    			<img src='images/index_23.gif' width='56' height='67' alt=''></td>
    		<td colspan='2'>
    			<a href='autres.php'>
    				<img src='images/main_autres.gif' width='85' height='20' border='0' alt=''></a></td>
    		<td colspan='3' rowspan='3'>
    			<img src='images/index_25.gif' width='31' height='67' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='20' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2' rowspan='2'>
    			<img src='images/index_26.gif' width='74' height='47' alt=''></td>
    		<td rowspan='2'>
    			<img src='images/index_27.gif' width='111' height='47' alt=''></td>
    		<td colspan='3' rowspan='2'>
    			<img src='images/index_28.gif' width='100' height='47' alt=''></td>
    		<td colspan='2' rowspan='2'>
    			<img src='images/index_29.gif' width='85' height='47' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='28' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='9' rowspan='2'>
    			<img src='images/index_30.gif' width='175' height='30' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='19' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='21'>
    			<img src='images/index_31.gif' width='49' height='659' alt=''></td>
    		<td width='284' height='131' colspan='5' rowspan='8'>";
     
    $list_nvl = new Liste_nvl();
    $list_nvl->Liste_5_nvl();
    $list_nvl->Afficher();
    echo " 
    			<!--<img src='images/spacer.gif' width='284' height='131' alt=''>-->
    		</td>
    		<td colspan='4' rowspan='9'>
    			<img src='images/index_33.gif' width='81' height='145' alt=''></td>
    		<td width='286' height='131' colspan='25' rowspan='8'>";
     
    $list_cmt = new Liste_cmt();
    $list_cmt->Liste_5_cmt();
    $list_cmt->Afficher();
    echo " 
    			<!--	<img src='images/spacer.gif' width='286' height='131' alt=''>-->
    		</td>
    		<td colspan='2' rowspan='19'>
    			<img src='images/index_35.gif' width='82' height='631' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='11' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='20'>
    			<img src='images/index_36.gif' width='44' height='648' alt=''></td>
    		<td colspan='2'>
    			<table id='id' width='72' height='14' border='0' cellpadding='0' cellspacing='0'>
    				<tr>
    					<td width='72' height='14'>
    						<input type='text' value='pseudo' name='pseudo' size=10 style='padding:0; margin:0; border:0;'/>
    					</td>
    				</tr>
    			</table></td>
    		<td rowspan='4'>
    			<img src='images/index_38.gif' width='12' height='94' alt=''></td>
    		<td colspan='3' rowspan='3'>
    			<a href='login.php'>
    				<img src='images/main_login_bouton.gif' width='43' height='34' border='0' alt=''></a></td>
    		<td colspan='2' rowspan='5'>
    			<img src='images/index_40.gif' width='4' height='96' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='14' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2'>
    			<img src='images/index_41.gif' width='72' height='5' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='5' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2'>
    			<table id='pwd' width='72' height='15' border='0' cellpadding='0' cellspacing='0'>
    				<tr>
    					<td width='72' height='15'>
    						<input type='password' value='password' name='pwd' size=10 style='padding:0; margin:0; border:0;'/>
    					</td>
    				</tr>
    			</table></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='15' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2'>
    			<img src='images/index_43.gif' width='72' height='60' alt=''></td>
    		<td colspan='3'>
    			<img src='images/index_44.gif' width='43' height='60' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='60' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='16'>
    			<img src='images/index_45.gif' width='7' height='554' alt=''></td>
    		<td width='89' height='17' colspan='3' rowspan='2'>
    			<input type='text' value='' name='tests' size=14 style='padding:0; margin:0;  border:0;'/>
    		</td>
    		<td colspan='2'>
    			<img src='images/index_47.gif' width='31' height='2' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='2' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='15'>
    			<img src='images/index_48.gif' width='9' height='552' alt=''></td>
    		<td colspan='2'>
    			<a href='search.php'>
    				<img src='images/main_go_bouton.gif' width='24' height='15' border='0' alt=''></a></td>
    		<td rowspan='15'>
    			<img src='images/index_50.gif' width='2' height='552' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='15' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='3' rowspan='14'>
    			<img src='images/index_51.gif' width='89' height='537' alt=''></td>
    		<td colspan='2' rowspan='14'>
    			<img src='images/index_52.gif' width='24' height='537' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='9' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='5' rowspan='13'>
    			<img src='images/index_53.gif' width='284' height='528' alt=''></td>
    		<td colspan='25'>
    			<img src='images/index_54.gif' width='286' height='14' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='14' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='12'>
    			<img src='images/index_55.gif' width='15' height='514' alt=''></td>
    		<td colspan='8'>
    			<a href='http://www.test1.com' target='_blank'>
    				<img src='images/main_01.gif' width='170' height='166' border='0' alt=''></a></td>
    		<td rowspan='12'>
    			<img src='images/index_57.gif' width='4' height='514' alt=''></td>
    		<td colspan='18'>
    			<a href='http://www.test2.com'  target='_blank'>
    				<img src='images/main_02.gif' width='170' height='166' border='0' alt=''></a></td>
    		<td rowspan='10'>
    			<img src='images/index_59.gif' width='8' height='486' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='166' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='8' rowspan='4'>
    			<img src='images/index_60.gif' width='170' height='99' alt=''></td>
    		<td colspan='18'>
    			<img src='images/index_61.gif' width='170' height='78' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='78' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='6' rowspan='6'>
    			<img src='images/index_62.gif' width='73' height='42' alt=''></td>
    		<td colspan='4'>
    			<a href='pc.php'>
    				<img src='images/main_pc_carte.gif' width='30' height='15' border='0' alt=''></a></td>
    		<td colspan='8' rowspan='2'>
    			<img src='images/index_64.gif' width='67' height='20' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='15' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='4' rowspan='5'>
    			<img src='images/index_65.gif' width='30' height='27' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='5' alt=''></td>
    	</tr>
    	<tr>
    		<td rowspan='6'>
    			<img src='images/index_66.gif' width='4' height='222' alt=''></td>
    		<td colspan='5' rowspan='2'>
    			<a href='macintosh.php'>
    				<img src='images/main_grenbole_carte.gif' width='42' height='13' border='0' alt=''></a></td>
    		<td colspan='2' rowspan='6'>
    			<img src='images/index_68.gif' width='21' height='222' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='1' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2' rowspan='7'>
    			<img src='images/index_69.gif' width='61' height='249' alt=''></td>
    		<td colspan='2' rowspan='2'>
    			<a href='a_propos.php'>
    				<img src='images/main_a_propos_suite.gif' width='14' height='15' border='0' alt=''></a></td>
    		<td colspan='4' rowspan='7'>
    			<img src='images/index_71.gif' width='95' height='249' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='12' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='5' rowspan='4'>
    			<img src='images/index_72.gif' width='42' height='209' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='3' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2' rowspan='5'>
    			<img src='images/index_73.gif' width='14' height='234' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='6' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='4' rowspan='2'>
    			<img src='images/index_74.gif' width='62' height='200' alt=''></td>
    		<td colspan='5'>
    			<a href='ibm.php'>
    				<img src='images/main_ibm_carte.gif' width='36' height='10' border='0' alt=''></a></td>
    		<td rowspan='2'>
    			<img src='images/index_76.gif' width='5' height='200' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='10' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='5'>
    			<img src='images/index_77.gif' width='36' height='190' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='190' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='2' rowspan='2'>
    			<img src='images/index_78.gif' width='30' height='28' alt=''></td>
    		<td colspan='5'>
    			<a href='http://www.traduc.fr/?site='>
    				<img src='images/main_english.gif' width='46' height='11' border='0' alt=''></a></td>
    		<td rowspan='2'>
    			<img src='images/index_80.gif' width='5' height='28' alt=''></td>
    		<td colspan='6'>
    			<a href='http://www.traduc.fr/?site='>
    				<img src='images/main_japonais.gif' width='47' height='11' border='0' alt=''></a></td>
    		<td rowspan='2'>
    			<img src='images/index_82.gif' width='8' height='28' alt=''></td>
    		<td colspan='5'>
    			<a href='index.php'>
    				<img src='images/main_francais.gif' width='46' height='11' border='0' alt=''></a></td>
    		<td rowspan='2'>
    			<img src='images/index_84.gif' width='78' height='28' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='11' alt=''></td>
    	</tr>
    	<tr>
    		<td colspan='5'>
    			<img src='images/index_85.gif' width='46' height='17' alt=''></td>
    		<td colspan='6'>
    			<img src='images/index_86.gif' width='47' height='17' alt=''></td>
    		<td colspan='5'>
    			<img src='images/index_87.gif' width='46' height='17' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='17' alt=''></td>
    	</tr>
    	<tr>
    		<td>
    			<img src='images/spacer.gif' width='15' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='44' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='7' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='65' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='12' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='12' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='9' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='22' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='2' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='2' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='52' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='49' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='25' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='49' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='111' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='42' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='57' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='15' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='28' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='33' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='5' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='9' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='9' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='79' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='6' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='4' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='26' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='4' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='9' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='23' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='5' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='6' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='3' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='5' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='17' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='5' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='4' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='5' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='15' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='1' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='8' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='13' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='13' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='8' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='8' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='4' height='1' alt=''></td>
    		<td>
    			<img src='images/spacer.gif' width='78' height='1' alt=''></td>
    		<td></td>
    	</tr>
    </table>
    </center>
     
    <!-- Les boîtes popup sont placées tout en bas du document -->\n";
    echo $list_nvl->echo_end;
    echo "\n
    </body>
    </html>";

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

Discussions similaires

  1. [WD18] Eviter agrandissement police quand écran 125%
    Par chapeau_melon dans le forum WinDev
    Réponses: 12
    Dernier message: 24/10/2013, 11h59
  2. Problème agrandissement police PRTF
    Par POP70 dans le forum AS/400
    Réponses: 4
    Dernier message: 26/08/2008, 12h04
  3. évènement sur agrandissement des polices
    Par j0hnmerrick dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 21/08/2007, 17h21
  4. comment bloquer l'agrandissement du texte par l'utilisateur
    Par toupiti dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 22/08/2006, 11h41
  5. Adresse des polices de caractères dans la RAM video ?
    Par Anonymous dans le forum x86 16-bits
    Réponses: 5
    Dernier message: 27/05/2002, 17h29

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