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 :

[HTML/CSS] FF/IE -> taille des polices


Sujet :

CSS

  1. #1
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut [HTML/CSS] FF/IE -> taille des polices
    Bonjour tous

    Désolée si cette question a déjà été posée mais après avoir lu 3 pages de réponses à ma recherche je me suis dit que j'allais quand même reposer la question.

    Mon site a été dév pour IE, optimisé totalement
    Maintenant on m'a dit bon ça serait bien qu'il passe sous firefox

    J'ai commencé par passer au moulinet w3c la feuille css ce qui a réglé pas mal de problèmes (il continue à râler que y'a pas toujours de background color parce qu'il ne prend pas la valeur "transparent" mais on m'a pas demandé du pur standard donc je laisse comme ça)

    Mais j'ai toujours quelques petits soucis
    1) La taille des polices n'est pas la même sous les 2 navigateurs
    Je sais qu'il faut pas utiliser px car ça dépend de l'écran et gnagna donc j'utilisais em
    Là je constate que même comme ça c'est très différent
    Je tente mediuùm, x-small etc mais c'est parti en vrille (un x-small affiché plus gros qu'un medium, je sais pas ce que j'avais loupé mais bon ^^)
    Je suis donc revenue aux em
    A la rigeur je ferai peut-être 2 feuilles de styles différentes plus tard mais pour l'instant c'est pas le plus ennuyeux
    2) La page n'est pas valide w3c mais c'est normal c'est du spip bidouillé (avant moi) donc avant de me jeter dans les modifs à tout va je regarde un peu le fonctionnement de spip et ce qu'ils ont changé pour eux. Pour l'instant j'ai pas l'impression que ce soit la cause du problème mais dites-moi si je me trompe
    3) Un texte par totalement en vrille sous Firefox (j'utilise version 2.0 alpa3 mais j'ai supputé que c'est pareil sous le 1.0)
    Sreen sous ie
    Screnn sous ff

    Code css
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    .defilant_frise {
    	/* font-weight : normal;  */
    	color : #551111; 
    	background-color : white; 
    	font-size : 0.6em; 
    	text-align : right; 
    }
    Appel dans la page
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    <td align=right valign=bottom>
    	<font class=defilant_frise>Bienvenue sur le site d'Accordages - nous sommes le 08/06/2006</font><br>
    	</td>
    Ca fait la même daube pour un autre texte après, je ne comprends vraiment pas y'a de propriété d'espacement ni dans body ni ailleurs à ce que j'ai vu...
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  2. #2
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    Pour la police pourquoi tu mets pas du style 12px ou meme size:2
    Des codes de ce genre

    Pour ton problème de div, j'ai testé et ca fonctionne mais en même temps on a pas tout le code

  3. #3
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Bah je peux mettre la page entière mais je trouvais ça indigeste...

    Voilà les 2 css, elles sont fusionnées l'une après l'autre dans la css "maitre" (pour pouvoir avoir imprimable, sans style ou autre a la place de mise en page etc)
    1ère css
    2ème css

    Quand au code de la page, voyez il suffit de faire "afficher source"

    Pour 12px j'explique juste au-dessus que je ne l'ai pas utilisé car dépendant du matériel sur lequel le site est affiché, ai-je mal compris?
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  4. #4
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    Alors pour ton problème de bienvenue ca vient de ce code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    div#identite {
        margin : 0; 
        padding : 0; 
        letter-spacing : 1em; 
        text-align : center; 
    }
    Tu lui donnes un espacement entre les lettres donc il t'obéit .Si tu retires ca redevient comme sous IE.

    Pour ton problème de taille dis moi si ca va mieux (c'est le fichier contenu):
    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
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    .titre_rubrique {
        font-family : "Trebuchet MS", sans-serif; 
        font-weight : normal; 
        color : #551111; 
        background-color : transparent; 
        font-size : 1em; 
    } 
     
    .titre_2 {
        font-family : "Trebuchet MS", sans-serif; 
        font-weight : normal; 
        color : #551111; 
        background-color : transparent; 
        font-size : 1.1em; 
    } 
     
    .texte_defilant {
        font-weight : normal; 
        color : #551111; 
        background-color : transparent; 
        font-size : 0.8em; 
    } 
     
    .pub {
        border-right : 1px solid #fff0f0; 
        border-left : 1px solid #fff0f0; 
        border-bottom : 1px solid #fff0f0; 
        border-top : 1px solid #fff0f0; 
    } 
     
    .titre_classique {
        font-weight : bolder; 
        font-size : 1.1em; 
    } 
     
    .desc_classique {
        font-size : 0.8em; 
    } 
    .oeuvre_desc {
        font-size : 0.7em; 
        text-align : justify; 
    } 
     
    .titre_sommaire {
        font-size : 1.3em; 
        text-align : left; 
        font-family : "Trebuchet MS", sans-serif; 
        color : #991111; 
        background-color : transparent; 
    }
     
    .titre_sommaire_2 {
        font-size : 1.2em; 
        text-align : left; 
        font-family : "Trebuchet MS", sans-serif; 
        color : #991111; 
        background-color : transparent; 
    } 
     
    .coupdeproj_desc {
        font-size : 1em; 
        text-align : justify; 
    }
     
    .coupdeproj {
        font-size : 1em; 
    } 
     
    .fieldproj {
        margin : 0; 
        padding : 0; 
        width : 350px; 
    } 
     
    .trait {
        height : 1px; 
        color : #ffe0e0; 
        background-color : transparent; 
    } 
     
    .defilant_frise {
        font-weight : normal;  
        color : #551111; 
        background-color : white; 
        font-size : 12px; 
        text-align : right; 
    } 
     
    .frise {
        font-family : Eurostile, sans-serif; 
        font-size : 1em; 
        font-weight : bolder; 
        text-align : right; 
        color : #fff0f0; 
        background-color : transparent; 
        margin-right : 2px; 
    } 
     
    .tablauteur {
        border-left : 1px solid #dddddd; 
        border-right : 1px solid #dddddd; 
        border-top : 1px solid #dddddd; 
        border-bottom : 1px solid #dddddd; 
    }
     
    td.news {
        font-size : 0.9em; 
    } 
     
    td.desc_news {
        font-size : 0.9em; 
        color : black; 
        background-color : transparent; 
    } 
     
    .titre_news {
        font-size : 0.9em; 
        text-align : left; 
        font-family : "Trebuchet MS", sans-serif; 
        color : #991111; 
        background-color : transparent; 
    } 
     
    td.arbor {
        font-size : 0.7em; 
        color : #551111; 
        background-color : transparent; 
    } 
     
    .nb_art_arbor {
        font-size : 0.9em; 
        color : black; 
        background-color : transparent; 
    } 
     
    .a_un_ami {
        width : 50px; 
    } 
     
    .coordonnees {
        font-size : 0.7em; 
        color : black; 
        background-color : transparent; 
    } 
     
    body {
        font-family : tahoma, verdana, arial, sans-serif; 
        font-size : 0.8em; 
        color : black; 
        background-color : transparent; 
        text-align : justify; 
    } 
     
    a:link, a:visited {
        color : #551111; 
        background-color : transparent; 
        text-decoration : none; 
    } 
     
    a:hover {
        color : #911; 
        background-color : transparent; 
        text-decoration : underline; 
    } 
     
    a:active {
        color : red; 
        background-color : transparent; 
    } 
     
    h3 {
        font-weight : bolder; 
        font-size : 1.2em; 
        margin : 0; 
        padding : 0.5em 0; 
    } 
     
    p {
        margin : 0; 
        padding : 0.5em 0; 
    } 
     
    p.titre {
        margin : 0; 
        padding : 0.5em 0; 
        font-weight : bolder; 
    } 
     
    img {
        border : 0; 
    } 
     
    .discret {
        color : #999; 
        background-color : transparent; 
        font-size : 0.8em; 
    } 
     
    .retourHautPage {
        font-size : smaller; 
        font-weight : bolder; 
        text-align : right; 
    } 
     
    div#identite {
        margin : 0; 
        padding : 0; 
        /*letter-spacing : 1em; */
        text-align : center; 
    } 
     
    div#identite h1 {
        color : #9c9; 
        background-color : transparent; 
        letter-spacing : 1em; 
        font-size : 1.5em; 
        font-weight : bolder; 
        margin : 0; 
        padding : 10px; 
    } 
     
    div#menu ul {
        padding : 0; 
        margin : 0; 
        font-weight : normal; 
        font-size : 1.2em; 
        text-align : center; 
    } 
     
    div#menu ul li {
        list-style : none; 
        margin : 0; 
        display : inline; 
    } 
     
    div#menu ul li a {
        padding : 2px 5px; 
        text-decoration : none; 
    } 
     
    div#menu ul li a:link, div#menu ul li a:visited {
        color : #933; 
        background-color : transparent; 
    } 
     
    div#menu ul li a.secteurcourant {
        padding : 2px 5px; 
        border : 1px solid black; 
        background-color : #363; 
        color : #000000; 
        text-decoration : none; 
    } 
     
    div#menu ul li a.secteurcourant:link, div#menu ul li a.secteurcourant:visited {
        color : #f90; 
        background-color : transparent; 
    } 
     
    div#menu ul li a:hover, div#menu ul li a.secteurcourant:hover {
        color : black; 
        background-color : #ffe7e7; 
        text-decoration : underline; 
    } 
     
    div#navigation {
        font-size : 1em; 
    } 
     
    div#navigation input, div#navigation select {
        font-size : 0.8em; 
    } 
     
    ul.fleche {
        list-style-image : url(/images/green_arrow4.jpg); 
    } 
     
    div#navigation .rubriqueoff {
        font-weight : normal; 
    } 
     
    div#navigation .rubriqueon {
        color : #c33; 
        background-color : transparent; 
    } 
     
    div#navigation .rubrique {
        font-weight : bolder; 
        color : #c33; 
        background-color : transparent; 
    } 
     
    div#outils {
        font-size : smaller; 
    } 
     
    div#outils ul {
        margin : 0; 
        padding : 0; 
    } 
     
    div#outils ul li {
        margin : 0 0 0 10px; 
        padding : 0; 
    } 
     
    div.recherche input, div#recherche select {
        font-size : 0.8em; 
    } 
     
    .recherche {
        text-align : right; 
    } 
     
    div#contenu .titre_partie {
        margin : 0; 
        padding : 0.3em; 
        background-color : #eee; 
        border : 1px solid; 
        color : #551111; 
    } 
     
    div#contenu .sous_partie {
        margin : 0; 
        padding : 0; 
        background-color : #eee; 
        color : black; 
        text-align : center; 
    } 
     
    div#contenu .surtitre {
        margin : 0; 
        padding : 0.3em 0 0; 
    } 
     
    div#contenu h2 {
        font-size : larger; 
        font-weight : bolder; 
        margin : 0; 
        padding : 0; 
    } 
     
    div#contenu .soustitre {
        margin : 0; 
        padding : 0 0 0.3em; 
    } 
     
    div#contenu .chapo {
        font-size : smaller; 
        font-weight : bolder; 
        text-align : justify; 
    } 
     
    div#contenu .texte {
        font-size : smaller; 
        text-align : justify; 
    } 
     
    div#contenu .ps {
        font-size : smaller; 
    } 
     
    div#contenu .notes {
        font-size : smaller; 
        background-color : #eee; 
        color : black; 
        border : 1px dashed #ddd; 
    } 
     
    div#spip_complement {
        background-color : #eee; 
        color : black; 
        border : 1px solid #ddd; 
    } 
     
    div#bas ul {
        text-align : center; 
        padding : 2px; 
        margin : 0; 
        font-weight : normal; 
        font-size : small; 
    }
     
    div#bas ul li {
        list-style : none; 
        margin : 0; 
        display : inline; 
    } 
     
    div#bas ul li:first-child {
        border-left : none; 
    } 
     
    div#bas ul li a {
        padding : 0 5px; 
        font-size : 1em; 
    } 
     
    div#bas img {
        border : 0; 
    } 
     
    a.spip_blank:after {
        content : url(../images/lien_ouvrant.gif); 
    } 
     
    .spip_puce {
        list-style-position : inside; 
    } 
     
    acronym.spip_acronym {
        cursor : help; 
        border-bottom : 1px dotted #369; 
    } 
     
    div.spip_images img {
        border : 0; 
        margin : 5px; 
        padding : 5px; 
    } 
     
    div.spip_documents {
        border : 1px dotted #999; 
        font-size : 1em; 
        text-align : center; 
        text-indent : 0; 
        width : 50%; 
        margin : 5px; 
        padding : 5px; 
    } 
     
    div.spip_documents p.spip_vignette img {
        border : 0; 
    } 
     
    div.spip_documents p.spip_titre_document {
        font-weight : bolder; 
    } 
     
    div.spip_documents p.spip_descriptif {
        font-size : 1em; 
        margin : 0; 
        padding : 0; 
    } 
     
    div.spip_documents p.spip_complement {
        margin : 0; 
        padding : 0; 
    } 
     
    table.spip {
        border : 1px dotted #c0c0c0; 
    } 
     
    table.spip caption {
        color : #999; 
        background-color : transparent; 
    } 
     
    table.spip tr.row_first {
        background-color : #333; 
        color : white; 
    } 
     
    table.spip tr.row_odd {
        background-color : #c0c0c0; 
        color : black; 
    } 
     
    table.spip tr.row_even {
        background-color : #f0f0f0; 
        color : black; 
    } 
     
    table.spip td {
        padding : 2px; 
        text-align : left; 
        vertical-align : middle; 
    } 
     
    blockquote.spip {
        margin-left : 40px; 
        margin-top : 10px; 
        margin-bottom : 10px; 
        margin-right : 0; 
        border : 1px solid #aaaaaa; 
        background-color : #ffffff; 
        color : black; 
        padding : 5px; 
    } 
     
    .spip_encadrer {
        background-color : #fff; 
        color : black; 
        padding : 5px; 
        border : 1px solid #666; 
    } 
     
    .spip_cadre {
        background-color : #fff; 
        color : black; 
        padding : 5px; 
    } 
     
    .spip_bouton {
        background-color : #fc0; 
        color : black; 
    } 
     
    .formrecherche {
        width : 100%; 
        background-color : #ffddaa; 
        color : black; 
    } 
     
    .reponse_formulaire {
        font-weight : bold; 
        color : red; 
    } 
     
    .spip_surligne {
        background-color : #ff6; 
        color : black; 
    } 
     
    ul.secteurs li {
        list-style-image : url(ecrire/img_pack/secteur-24.gif); 
    } 
     
    ul.rubriques li {
        list-style-image : url(ecrire/img_pack/rubrique-24.gif); 
    } 
     
    ul.articles li {
        list-style-image : url(ecrire/img_pack/article-24.gif); 
    } 
     
    ul.breves li {
        list-style-image : url(ecrire/img_pack/breve-24.gif); 
    } 
     
    ul.sites li {
        list-style-image : url(ecrire/img_pack/site-24.gif); 
    } 
     
    p.spip_descriptif {
        margin : 0 0 0.2em 1em; 
        font-size : 0.8em; 
    } 
     
    ul.sondage {
        font-size : 0.8em; 
    } 
     
    div.forum {
        font-size : 0.8em; 
    } 
     
    div.forum ul {
        border : 1px solid #909090; 
        background-color : #a1a1a1; 
        color : black; 
        display : block; 
        padding : 0; 
        margin : 0.5em 0 0 1em; 
        list-style : none; 
    } 
     
    div.forum ul ul {
        border : 1px solid; 
        background-color : #b5b5b5; 
        color : black; 
    } 
     
    div.forum ul ul ul {
        border : 1px solid; 
        background-color : #c9c9c9; 
        color : black; 
    } 
     
    div.forum ul ul ul ul {
        border : 1px solid; 
        background-color : #ddd; 
        color : black; 
    } 
     
    div.forum ul ul ul ul ul {
        border : 1px solid; 
        background-color : #f1f1f1; 
        color : black; 
    } 
     
    div.forum ul ul ul ul ul ul {
        border : 1px dashed; 
        background-color : #f1f1f1; 
        color : black; 
    } 
     
    div.forum ul li p.spip_titre_document {
        font-weight : bold; 
    } 
     
    div.message {
        font-size : 0.8em; 
        background-color : #f1f1f1; 
        border : 1px solid #e0e0e0; 
        color : black; 
    } 
     
    div.message p.titre {
        font-weight : bold; 
    } 
     
    div.thread {
        font-size : 0.8em; 
        background-color : #a1a1a1; 
        border : 1px solid #e0e0e0; 
        color : black; 
    } 
     
    div.thread p.titre {
        font-weight : bold; 
    } 
     
    div.thread p.titreMessageCourant {
        font-weight : bold; 
        color : red; 
    } 
     
    .signatures {
        margin-left : 0; 
        margin-right : 0; 
        margin-top : 1em; 
        margin-bottom : 1em; 
        width : 100%; 
    } 
     
    .signatures-titre {
        clear : right; 
        font-weight : bold; 
        font-size : 120%; 
        text-align : center; 
        padding : 0.5em; 
        margin : 0; 
    } 
     
    .signature-date {
        white-space : nowrap; 
        background : #e4f0f0; 
        color : black; 
        padding : 0.5em; 
    } 
     
    .signature-nom {
        font-weight : bold; 
        color : black; 
        background : #ecf4f4; 
        padding : 0.2em; 
        text-align : center; 
    } 
     
    .signature-message {
        font-size : 85%; 
        background : #f4f8f8; 
        color : black; 
        padding : 0.4em; 
        text-align : justify; 
    } 
     
    .formrecherche {
        background-color : #f2f2f2; 
        color : #505030; 
        margin : 0; 
        padding : 2px; 
        border : 1px solid #909090; 
        font-size : 80%; 
        font-weight : normal; 
    } 
     
    .formulaire, .formulaire_sondage_libre {
        color : black; 
        margin : 0; 
        padding : 0; 
        border : 0 solid #a0a0a0; 
        font-size : 0.8em; 
        font-weight : normal; 
        width : 90%; 
    } 
     
    .field {
        color : black; 
        margin : 0; 
        padding : 0; 
        border : 1px solid #a0a0a0; 
        font-weight : normal; 
    } 
     
    .formulaire_sondage_libre .spip_bouton {
        width : 90%; 
    } 
     
    .formulaire select, .formulaire input {
        width : 90%; 
    } 
     
    .forml {
        background-color : #ececec; 
        color : black; 
        margin : 4px; 
        padding : 1px; 
        border : 1px dashed #909090; 
        font-size : 0.9em; 
        width : 90%; 
    } 
     
    .spip_bouton {
        padding : 2px; 
    } 
     
    .spip-admin {
        line-height : 0.2em; 
        font-size : 0.8em; 
        padding : 2px; 
    }
     
    a.agora_favoris_ajout {
        color : green; 
    } 
     
    a.agora_favoris_supp {
        color : red; 
    } 
     
    .cm_ok {
        color : red; 
    } 
     
    .cm_error {
        color : red; 
        font-weight : bold; 
    } 
     
    ul.rubriques a.agora_favoris_supp, ul.articles a.agora_favoris_supp, ul.breves a.agora_favoris_supp {
        font-size : 0.8em; 
    } 
     
    table.spip_perso {
        font-size : 0.8em; 
    } 
     
    table.spip_perso td {
        white-space : nowrap; 
    } 
     
    .erreur_forum, .erreur_login {
        color : #ff0000; 
        font-weight : bold; 
    }

  5. #5
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Nan ca va pas ce que tu mets c'est beaucoup trop gros
    L'affichage de mon screen ie (voir 1er post) c'est vraiment ce que je veux obtenir sous firefox (à peu près), ce que tu mas fait comme feuille de style ca m'a donné des textes trop trop gros

    Sinon pour le spacing bravo j'avais pas vu ce style tain c'est déconner, merci beaucoup Kerod
    (mais pourquoi j'avais pas le même effet sous ie, c'est encore je-suis-ie-je-m'en-cogne-des-standards? )
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  6. #6
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    Pour celui de droite (news) je trouve que c'est la même chose que sous IE pas contre c'est vrai que le milieu est trop gros donc :
    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
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    .titre_rubrique {
        font-family : "Trebuchet MS", sans-serif; 
        font-weight : normal; 
        color : #551111; 
        background-color : transparent; 
        font-size : 1em; 
    } 
     
    .titre_2 {
        font-family : "Trebuchet MS", sans-serif; 
        font-weight : normal; 
        color : #551111; 
        background-color : transparent; 
        font-size : 1.1em; 
    } 
     
    .texte_defilant {
        font-weight : normal; 
        color : #551111; 
        background-color : transparent; 
        font-size : 0.8em; 
    } 
     
    .pub {
        border-right : 1px solid #fff0f0; 
        border-left : 1px solid #fff0f0; 
        border-bottom : 1px solid #fff0f0; 
        border-top : 1px solid #fff0f0; 
    } 
     
    .titre_classique {
        font-weight : bolder; 
        font-size : 1.1em; 
    } 
     
    .desc_classique {
        font-size : 0.8em; 
    } 
    .oeuvre_desc {
        font-size : 0.7em; 
        text-align : justify; 
    } 
     
    .titre_sommaire {
        font-size : 1.3em; 
        text-align : left; 
        font-family : "Trebuchet MS", sans-serif; 
        color : #991111; 
        background-color : transparent; 
    }
     
    .titre_sommaire_2 {
        font-size : 1.2em; 
        text-align : left; 
        font-family : "Trebuchet MS", sans-serif; 
        color : #991111; 
        background-color : transparent; 
    } 
     
    .coupdeproj_desc {
        font-size : 1em; 
        text-align : justify; 
    }
     
    .coupdeproj {
        font-size : 0.8em; 
    } 
     
    .fieldproj {
        margin : 0; 
        padding : 0; 
        width : 350px; 
    } 
     
    .trait {
        height : 1px; 
        color : #ffe0e0; 
        background-color : transparent; 
    } 
     
    .defilant_frise {
        font-weight : normal;  
        color : #551111; 
        background-color : white; 
        font-size : 12px; 
        text-align : right; 
    } 
     
    .frise {
        font-family : Eurostile, sans-serif; 
        font-size : 1em; 
        font-weight : bolder; 
        text-align : right; 
        color : #fff0f0; 
        background-color : transparent; 
        margin-right : 2px; 
    } 
     
    .tablauteur {
        border-left : 1px solid #dddddd; 
        border-right : 1px solid #dddddd; 
        border-top : 1px solid #dddddd; 
        border-bottom : 1px solid #dddddd; 
    }
     
    td.news {
        font-size : 0.9em; 
    } 
     
    td.desc_news {
        font-size : 0.9em; 
        color : black; 
        background-color : transparent; 
    } 
     
    .titre_news {
        font-size : 0.9em; 
        text-align : left; 
        font-family : "Trebuchet MS", sans-serif; 
        color : #991111; 
        background-color : transparent; 
    } 
     
    td.arbor {
        font-size : 0.7em; 
        color : #551111; 
        background-color : transparent; 
    } 
     
    .nb_art_arbor {
        font-size : 0.9em; 
        color : black; 
        background-color : transparent; 
    } 
     
    .a_un_ami {
        width : 50px; 
    } 
     
    .coordonnees {
        font-size : 0.7em; 
        color : black; 
        background-color : transparent; 
    } 
     
    body {
        font-family : tahoma, verdana, arial, sans-serif; 
        font-size : 0.8em; 
        color : black; 
        background-color : transparent; 
        text-align : justify; 
    } 
     
    a:link, a:visited {
        color : #551111; 
        background-color : transparent; 
        text-decoration : none; 
    } 
     
    a:hover {
        color : #911; 
        background-color : transparent; 
        text-decoration : underline; 
    } 
     
    a:active {
        color : red; 
        background-color : transparent; 
    } 
     
    h3 {
        font-weight : bolder; 
        font-size : 1.2em; 
        margin : 0; 
        padding : 0.5em 0; 
    } 
     
    p {
        margin : 0; 
        padding : 0.5em 0; 
    } 
     
    p.titre {
        margin : 0; 
        padding : 0.5em 0; 
        font-weight : bolder; 
    } 
     
    img {
        border : 0; 
    } 
     
    .discret {
        color : #999; 
        background-color : transparent; 
        font-size : 0.8em; 
    } 
     
    .retourHautPage {
        font-size : smaller; 
        font-weight : bolder; 
        text-align : right; 
    } 
     
    div#identite {
        margin : 0; 
        padding : 0; 
        /*letter-spacing : 1em; */
        text-align : center; 
    } 
     
    div#identite h1 {
        color : #9c9; 
        background-color : transparent; 
        letter-spacing : 1em; 
        font-size : 1.5em; 
        font-weight : bolder; 
        margin : 0; 
        padding : 10px; 
    } 
     
    div#menu ul {
        padding : 0; 
        margin : 0; 
        font-weight : normal; 
        font-size : 1.2em; 
        text-align : center; 
    } 
     
    div#menu ul li {
        list-style : none; 
        margin : 0; 
        display : inline; 
    } 
     
    div#menu ul li a {
        padding : 2px 5px; 
        text-decoration : none; 
    } 
     
    div#menu ul li a:link, div#menu ul li a:visited {
        color : #933; 
        background-color : transparent; 
    } 
     
    div#menu ul li a.secteurcourant {
        padding : 2px 5px; 
        border : 1px solid black; 
        background-color : #363; 
        color : #000000; 
        text-decoration : none; 
    } 
     
    div#menu ul li a.secteurcourant:link, div#menu ul li a.secteurcourant:visited {
        color : #f90; 
        background-color : transparent; 
    } 
     
    div#menu ul li a:hover, div#menu ul li a.secteurcourant:hover {
        color : black; 
        background-color : #ffe7e7; 
        text-decoration : underline; 
    } 
     
    div#navigation {
        font-size : 1em; 
    } 
     
    div#navigation input, div#navigation select {
        font-size : 0.8em; 
    } 
     
    ul.fleche {
        list-style-image : url(/images/green_arrow4.jpg); 
    } 
     
    div#navigation .rubriqueoff {
        font-weight : normal; 
    } 
     
    div#navigation .rubriqueon {
        color : #c33; 
        background-color : transparent; 
    } 
     
    div#navigation .rubrique {
        font-weight : bolder; 
        color : #c33; 
        background-color : transparent; 
    } 
     
    div#outils {
        font-size : smaller; 
    } 
     
    div#outils ul {
        margin : 0; 
        padding : 0; 
    } 
     
    div#outils ul li {
        margin : 0 0 0 10px; 
        padding : 0; 
    } 
     
    div.recherche input, div#recherche select {
        font-size : 0.8em; 
    } 
     
    .recherche {
        text-align : right; 
    } 
     
    div#contenu .titre_partie {
        margin : 0; 
        padding : 0.3em; 
        background-color : #eee; 
        border : 1px solid; 
        color : #551111; 
    } 
     
    div#contenu .sous_partie {
        margin : 0; 
        padding : 0; 
        background-color : #eee; 
        color : black; 
        text-align : center; 
    } 
     
    div#contenu .surtitre {
        margin : 0; 
        padding : 0.3em 0 0; 
    } 
     
    div#contenu h2 {
        font-size : larger; 
        font-weight : bolder; 
        margin : 0; 
        padding : 0; 
    } 
     
    div#contenu .soustitre {
        margin : 0; 
        padding : 0 0 0.3em; 
    } 
     
    div#contenu .chapo {
        font-size : smaller; 
        font-weight : bolder; 
        text-align : justify; 
    } 
     
    div#contenu .texte {
        font-size : smaller; 
        text-align : justify; 
    } 
     
    div#contenu .ps {
        font-size : smaller; 
    } 
     
    div#contenu .notes {
        font-size : smaller; 
        background-color : #eee; 
        color : black; 
        border : 1px dashed #ddd; 
    } 
     
    div#spip_complement {
        background-color : #eee; 
        color : black; 
        border : 1px solid #ddd; 
    } 
     
    div#bas ul {
        text-align : center; 
        padding : 2px; 
        margin : 0; 
        font-weight : normal; 
        font-size : small; 
    }
     
    div#bas ul li {
        list-style : none; 
        margin : 0; 
        display : inline; 
    } 
     
    div#bas ul li:first-child {
        border-left : none; 
    } 
     
    div#bas ul li a {
        padding : 0 5px; 
        font-size : 1em; 
    } 
     
    div#bas img {
        border : 0; 
    } 
     
    a.spip_blank:after {
        content : url(../images/lien_ouvrant.gif); 
    } 
     
    .spip_puce {
        list-style-position : inside; 
    } 
     
    acronym.spip_acronym {
        cursor : help; 
        border-bottom : 1px dotted #369; 
    } 
     
    div.spip_images img {
        border : 0; 
        margin : 5px; 
        padding : 5px; 
    } 
     
    div.spip_documents {
        border : 1px dotted #999; 
        font-size : 1em; 
        text-align : center; 
        text-indent : 0; 
        width : 50%; 
        margin : 5px; 
        padding : 5px; 
    } 
     
    div.spip_documents p.spip_vignette img {
        border : 0; 
    } 
     
    div.spip_documents p.spip_titre_document {
        font-weight : bolder; 
    } 
     
    div.spip_documents p.spip_descriptif {
        font-size : 1em; 
        margin : 0; 
        padding : 0; 
    } 
     
    div.spip_documents p.spip_complement {
        margin : 0; 
        padding : 0; 
    } 
     
    table.spip {
        border : 1px dotted #c0c0c0; 
    } 
     
    table.spip caption {
        color : #999; 
        background-color : transparent; 
    } 
     
    table.spip tr.row_first {
        background-color : #333; 
        color : white; 
    } 
     
    table.spip tr.row_odd {
        background-color : #c0c0c0; 
        color : black; 
    } 
     
    table.spip tr.row_even {
        background-color : #f0f0f0; 
        color : black; 
    } 
     
    table.spip td {
        padding : 2px; 
        text-align : left; 
        vertical-align : middle; 
    } 
     
    blockquote.spip {
        margin-left : 40px; 
        margin-top : 10px; 
        margin-bottom : 10px; 
        margin-right : 0; 
        border : 1px solid #aaaaaa; 
        background-color : #ffffff; 
        color : black; 
        padding : 5px; 
    } 
     
    .spip_encadrer {
        background-color : #fff; 
        color : black; 
        padding : 5px; 
        border : 1px solid #666; 
    } 
     
    .spip_cadre {
        background-color : #fff; 
        color : black; 
        padding : 5px; 
    } 
     
    .spip_bouton {
        background-color : #fc0; 
        color : black; 
    } 
     
    .formrecherche {
        width : 100%; 
        background-color : #ffddaa; 
        color : black; 
    } 
     
    .reponse_formulaire {
        font-weight : bold; 
        color : red; 
    } 
     
    .spip_surligne {
        background-color : #ff6; 
        color : black; 
    } 
     
    ul.secteurs li {
        list-style-image : url(ecrire/img_pack/secteur-24.gif); 
    } 
     
    ul.rubriques li {
        list-style-image : url(ecrire/img_pack/rubrique-24.gif); 
    } 
     
    ul.articles li {
        list-style-image : url(ecrire/img_pack/article-24.gif); 
    } 
     
    ul.breves li {
        list-style-image : url(ecrire/img_pack/breve-24.gif); 
    } 
     
    ul.sites li {
        list-style-image : url(ecrire/img_pack/site-24.gif); 
    } 
     
    p.spip_descriptif {
        margin : 0 0 0.2em 1em; 
        font-size : 0.8em; 
    } 
     
    ul.sondage {
        font-size : 0.8em; 
    } 
     
    div.forum {
        font-size : 0.8em; 
    } 
     
    div.forum ul {
        border : 1px solid #909090; 
        background-color : #a1a1a1; 
        color : black; 
        display : block; 
        padding : 0; 
        margin : 0.5em 0 0 1em; 
        list-style : none; 
    } 
     
    div.forum ul ul {
        border : 1px solid; 
        background-color : #b5b5b5; 
        color : black; 
    } 
     
    div.forum ul ul ul {
        border : 1px solid; 
        background-color : #c9c9c9; 
        color : black; 
    } 
     
    div.forum ul ul ul ul {
        border : 1px solid; 
        background-color : #ddd; 
        color : black; 
    } 
     
    div.forum ul ul ul ul ul {
        border : 1px solid; 
        background-color : #f1f1f1; 
        color : black; 
    } 
     
    div.forum ul ul ul ul ul ul {
        border : 1px dashed; 
        background-color : #f1f1f1; 
        color : black; 
    } 
     
    div.forum ul li p.spip_titre_document {
        font-weight : bold; 
    } 
     
    div.message {
        font-size : 0.8em; 
        background-color : #f1f1f1; 
        border : 1px solid #e0e0e0; 
        color : black; 
    } 
     
    div.message p.titre {
        font-weight : bold; 
    } 
     
    div.thread {
        font-size : 0.8em; 
        background-color : #a1a1a1; 
        border : 1px solid #e0e0e0; 
        color : black; 
    } 
     
    div.thread p.titre {
        font-weight : bold; 
    } 
     
    div.thread p.titreMessageCourant {
        font-weight : bold; 
        color : red; 
    } 
     
    .signatures {
        margin-left : 0; 
        margin-right : 0; 
        margin-top : 1em; 
        margin-bottom : 1em; 
        width : 100%; 
    } 
     
    .signatures-titre {
        clear : right; 
        font-weight : bold; 
        font-size : 120%; 
        text-align : center; 
        padding : 0.5em; 
        margin : 0; 
    } 
     
    .signature-date {
        white-space : nowrap; 
        background : #e4f0f0; 
        color : black; 
        padding : 0.5em; 
    } 
     
    .signature-nom {
        font-weight : bold; 
        color : black; 
        background : #ecf4f4; 
        padding : 0.2em; 
        text-align : center; 
    } 
     
    .signature-message {
        font-size : 85%; 
        background : #f4f8f8; 
        color : black; 
        padding : 0.4em; 
        text-align : justify; 
    } 
     
    .formrecherche {
        background-color : #f2f2f2; 
        color : #505030; 
        margin : 0; 
        padding : 2px; 
        border : 1px solid #909090; 
        font-size : 80%; 
        font-weight : normal; 
    } 
     
    .formulaire, .formulaire_sondage_libre {
        color : black; 
        margin : 0; 
        padding : 0; 
        border : 0 solid #a0a0a0; 
        font-size : 0.8em; 
        font-weight : normal; 
        width : 90%; 
    } 
     
    .field {
        color : black; 
        margin : 0; 
        padding : 0; 
        border : 1px solid #a0a0a0; 
        font-weight : normal; 
    } 
     
    .formulaire_sondage_libre .spip_bouton {
        width : 90%; 
    } 
     
    .formulaire select, .formulaire input {
        width : 90%; 
    } 
     
    .forml {
        background-color : #ececec; 
        color : black; 
        margin : 4px; 
        padding : 1px; 
        border : 1px dashed #909090; 
        font-size : 0.9em; 
        width : 90%; 
    } 
     
    .spip_bouton {
        padding : 2px; 
    } 
     
    .spip-admin {
        line-height : 0.2em; 
        font-size : 0.8em; 
        padding : 2px; 
    }
     
    a.agora_favoris_ajout {
        color : green; 
    } 
     
    a.agora_favoris_supp {
        color : red; 
    } 
     
    .cm_ok {
        color : red; 
    } 
     
    .cm_error {
        color : red; 
        font-weight : bold; 
    } 
     
    ul.rubriques a.agora_favoris_supp, ul.articles a.agora_favoris_supp, ul.breves a.agora_favoris_supp {
        font-size : 0.8em; 
    } 
     
    table.spip_perso {
        font-size : 0.8em; 
    } 
     
    table.spip_perso td {
        white-space : nowrap; 
    } 
     
    .erreur_forum, .erreur_login {
        color : #ff0000; 
        font-weight : bold; 
    }
    Ca devrait être nickel là

  7. #7
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Nan mais je crois qu'on s'est pas bien compris
    Ce que tu me donnes ca me permet d'avoir firefox pareil que ce que j'avais sous ie AVANT
    Mais ie MAINTENANT c'est trop gros

    IE 2
    Firefox 2
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  8. #8
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    on doit pas avoir les mêmes navigateurs ou le même fichier css.
    Moi j'ai exactement la même chose sous IE et FF...
    IE
    FF

  9. #9
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Bah jai ce quil y avait sur mon poste, soit IE 6.0 et des brouettes et j'ai mis firefox 2.0 vu que c'est le prochain.
    Tu as IE quoi toi?
    Parce que je m'en fous de comment c'est sur mon poste, je veux que ca soit bien sur la majorité des IE

    (au cas où j'ai vérifié que ma taille de police était bien à moyenne dans l'affichage, mais si c'est bon XD)

    On est bien d'accord, tu enregistres la page sur le net et tu appliques ta feuille de style à la place de l'ancienne?
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  10. #10
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    Je viens de regarder la version de IE et c'est 6 SP2

    Et pour la page c'est ce que tu dois faire, mais j'ai tout sauvegardé en local et j'ai testé avec FF1.5 et IE6

  11. #11
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Mais c'est ouf si on a le même IE >_<
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  12. #12
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    BOn je vais faire un test sur un serveur http et je te tiens au courant

  13. #13
    Inactif  
    Avatar de Kerod
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    11 672
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 11 672
    Points : 20 778
    Points
    20 778
    Par défaut
    Voilà j'ai testé en ligne et vraiment c'est nickel de mon coté.

  14. #14
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Ca me tue... Bon bah écoute je vais miser qu'en ligne ça fera comme chez toi et on verra bien
    Merci beaucoup pour ton aide
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

  15. #15
    EJ
    EJ est déconnecté
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    84
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 84
    Points : 49
    Points
    49
    Par défaut
    Bon bah tu sais quoi je viens de mettre en ligne la css que tu m'as filée et...
    Sur mon ordi comme sur un autre que j'ai testé ça fait comme ce que je te montrais en screenshot...
    Est-ce que tu peux regarder à nouveau et me dire si toi tu as toujours pareil avec IE ou FF?
    http://www.accordages-intergeneration.com/_v3/

    Moi c'est nickel FF et trop gros IE...
    Dois-je envisager 2 css différentes? (Ce que je sens va être galère )
    Il existe 10 catégories de gens.
    Ceux qui comprennent le binaire et ceux qui ne le comprennent pas...

Discussions similaires

  1. tailles des polices
    Par kalyparker dans le forum Mise en page CSS
    Réponses: 7
    Dernier message: 20/04/2007, 11h53
  2. Agrandir la tailles des polices en PHP.
    Par ox@na dans le forum Langage
    Réponses: 2
    Dernier message: 12/08/2006, 16h46
  3. [HTML][CSS] Comment empecher l'application des styles
    Par ardi dans le forum Mise en page CSS
    Réponses: 6
    Dernier message: 28/03/2006, 11h56
  4. modifier la police et la taille des polices
    Par gilleski2010 dans le forum C++
    Réponses: 1
    Dernier message: 28/12/2005, 12h03
  5. [Kylix] Taille des police dans kylix
    Par merzhin dans le forum EDI
    Réponses: 2
    Dernier message: 04/09/2004, 21h18

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