tutorials.de Buch-Aktion 05/2012
ERLEDIGT
JA
ANTWORTEN
9
ZUGRIFFE
551
EMPFEHLEN
  • An Twitter übertragen
  • An Facebook übertragen
AUF DIESES THEMA
ANTWORTEN
  1. #1
    jhonnybravo jhonnybravo ist offline Mitglied Bronze
    Registriert seit
    Apr 2008
    Ort
    Solingen (NRW)
    Beiträge
    27
    Hallo zusammen,

    ich habe folgendes Problem. Die Topnavigation (td.topnav) soll wie das darunter liegende Datum einen Absatand nach Rechts von 2.8% haben. Funktioniert in FF, Safari, Chrome etc auch ohne Probleme. IE 6/7 scheint diese Angabe zu übergehen. Es wird ganz an den rechten Rand gepackt. IE5 hingegen stellt es ganz nach Links. Setze ich hingegen einen Wert in Pixel ein, funktioniert es. Damit ist mir aber leider nicht geholfen. Das Layout soll ja mit verschiedenen Auflösungen gleich aussehen.

    Ich weiß, dass das erstellte Template nicht das beste ist, da es mit Tabellen arbeitet. Da ich diese Webseite aber als "Freundschaftsdienst" überarbeite und kein Geld dafür sehe, werde ich aber nicht das ganze Ding umschreiben.

    Hier der Link zur Seite:
    Webseite aufrufen
    Nicht das Bundesland wechseln! Sonst greift ein anderes Template! Nur auf der Seite des Bundes wird momentan das zu überarbeitende verwendet.


    Hier der entsprechende Teil der index.php:
    Code :
    1
    2
    3
    4
    5
    6
    7
    8
    9
    
    <td  width="100%" align="center" class="topnav" valign="bottom">
     
                          <?php if($this->countModules('user3')) : ?>
                        <div class="topnavwrapper">
                          <div><jdoc:include type="modules" name="user3" /></div>
                        </div>
                          <?php endif; ?>
     
    </td>


    Hier der CSS-Teil der Topnavigation:
    Code :
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    
    td.topnav {
      margin : 0px;
      padding:  0px;
      background     : url(../images/bg_top.gif) repeat-x top left;
      height         : 23px;
      text-align:right;
      color:#FFF;
      padding-bottom:3px;
      padding-right:2.8%;
      font-size:15px;
     }
     
    td.topnav a , td.topnav a:visited{
      text-align:right;
      color:#FFF;
      margin-left:20px;
     }
     
    td.topnav a:hover{
      text-align:right;
      color:#333;
     }


    Ich stehe leider völlig auf dem Schlauch, warum hier dieser Fehler entsteht. Padding/Margin ist ja generell eine Sache, die die lieben Browser aus dem Hause Microsoft etwas anders interpretieren. Muss hier vielleicht auch ein CSS-Hack eingebaut werden Oder wie bekomme ich sonst dieses Problem in den Griff

    Vorab vielen Dank für eure Bemühungen und Antworten!

    Gruß Jhonny
    Geändert von jhonnybravo (23.10.09 um 10:50 Uhr)
     

  2. #2
    Maik Tutorials.de Gastzugang
    Hi,

    der obige CSS-Code funktioniert im IE einwandfrei.

    mfg Maik
     

  3. #3
    Maik Tutorials.de Gastzugang
    Nachtrag: Das liegt in der verlinkten Seite offensichtlich an den Nachfolgeelementen.

    Code css:
    1
    
    td.topnav .topnavwrapper  { padding-right:2.8%; }
    ... führt im IE zum Erfolg.

    mfg Maik
     

  4. #4
    jhonnybravo jhonnybravo ist offline Mitglied Bronze
    Registriert seit
    Apr 2008
    Ort
    Solingen (NRW)
    Beiträge
    27
    Ja vielen Dank! Das hat geholfen.

    Einzig der IE5 spinnt noch rum und packt das Topmenü auf die linke Seite. Warum auch immer. Aber ich denke, das werde ich einfach übergehen. IE6 aufwärts kompatibel sollte reichen. Sei denn du weißt auch hier auf Anhieb Rat

    Tausend Dank aber schon für die bisherige Lösung!

    Gruß Jhonny
     

  5. #5
    Maik Tutorials.de Gastzugang
    Jo, auch hierfür hab ich einen Lösungsansatz
    Code css:
    1
    
    td.topnav .topnavwrapper td { text-align:right; }

    mfg Maik
     

  6. #6
    jhonnybravo jhonnybravo ist offline Mitglied Bronze
    Registriert seit
    Apr 2008
    Ort
    Solingen (NRW)
    Beiträge
    27
    ja, das setzt der 5er dann zwar nach rechts, allerdings wieder ganz nach rechts an den Außenrand. Noch ne andere Idee?

    Was mir auch noch aufgefallen ist, dass nur im IE6 und IE5 der pathway und das Datum leicht nach innen gerückt sind. Ich würde schätzen um 2.8% Ist ja eigentlich auch richtig. Allergins 2.8% vom Außenrand, sodass es mit dem linken und rechten Menü bündig ist. IE6/5 machen es allerdings anders.

    Hier der Code von Datum und pathway
    Code :
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    
    div.date {
      float:right;
      font-size        : 11px;
      font-weight      : bold;
      color            : #333333;
      width: 20%;
      text-align: right;
      margin-right: 2.8%;
    }
     
    div.pw {
      float:left;
      width: 70%;
      margin-left:2.8%;
    }

    Hast du hier noch mehr tolle Ideen? Und vielen Dank für deine Hilfe!!
     

  7. #7
    Maik Tutorials.de Gastzugang
    In meiner Testseite behält der IE5.x den rechten Innenabstand bei.

    Der CSS-Schnipsel deutet auf The IE5/6 Doubled Float-Margin Bug hin.

    mfg Maik
     

  8. #8
    jhonnybravo jhonnybravo ist offline Mitglied Bronze
    Registriert seit
    Apr 2008
    Ort
    Solingen (NRW)
    Beiträge
    27
    Alle Probleme behoben!
    Mal wieder vielen Dank für deine Hilfe

    Schönes Wochenende

    Gruß Jhonny
     

  9. #9
    jhonnybravo jhonnybravo ist offline Mitglied Bronze
    Registriert seit
    Apr 2008
    Ort
    Solingen (NRW)
    Beiträge
    27
    Das war wohl zu früh gefreut. Im IE8 ist nun was neues aufgetaucht. Er bricht die Zeile der Topnavigation irgendwie um und packt einen Teil rechts neben die Seite ganz nach oben. Was zum Teufel ist da nun wieder los?

    Webseite aufrufen

    IE sollte echt verboten werden.

    Kannst du mir sagen, was falsch ist?

    Hier mal noch das ganze CSS:
    Code :
    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
    
    body,html {
      padding          : 0;
      margin           : 0;
      margin-bottom    : 10px;
      
        }
     
     
     
    #body_bg{
    background     : url(../images/bg_top.gif) #ffffff repeat-x top left;
     
    }
     
    .main { 
      text-align       : left; 
      width            : 100%;
      margin           : 0; 
      padding          : 0;
    }
     
     
    .mod {
      background       : #FFFFFF;
      width            : 2px;
    }
     
    td, tr, p, div {
      font-family      : Arial, Verdana, Tahoma, Helvetica, sans-serif;
      font-size        : 97%;
      color            : #333333;
    }
    hr {
      color            : #333333;
      height           : 1px;
      width            : 100%;
    }
     
    form {
    margin           : 0; 
    padding          : 0;
    }
     
    img {
     
    }
     
    .leftrow {
      width            : 180px;
      height           : 100%;
      margin-right     : 0;
      background       : #fff;
     
    }
     
    .rightrow {
      height           : 100%;
      width            : 169px;
      margin-left      : 0;
      background       : #fff;
     
     }
     
    .back_button {
      color            : #666666;
      font-family      : Tahoma, Arial, Verdana,  Helvetica, sans-serif;
      font-size        : 11px;
      font-weight      : normal;
      padding-bottom   : 3px;
      margin-right     : 4px;
      float            : right;
      line-height      : 20px;
      }
     
    .button {
      font-size        : 11px;
      color            : #990000;
      border           : 1px solid #B4C1D1;
      margin           : 3px;
      background-color : #EAECEE;
      padding          : 2px !important;
      padding          : 1px;
      cursor           : pointer;
    }
     
    .inputbox {
     color        : #000000;
     background   : #ffffff;
     border       : 1px solid #B4C1D1;
     margin       : 3px;
     
    }
     
    h1 {font-size        : 90%;
        color            : #990000;
        margin           : 5px 0;
    }
     
    h2 {font-size        : 80%;
        color            : #990000;
        margin           : 5px 0;
    }
     
    h3 {font-size        : 75%;
        color            : #990000;
        margin           : 5px 0;
    }
     
    form#form-login{
        background: #F1F4F6;
        color: #fff;
        margin: 5px 0 15px 0;
        text-align:left
          }
     
     
    form#form-login fieldset{
    border: none;
    }
     
    form#form-login fieldset label {}
    form#form-login ul a
    {}
     
     
     
    .contact_email  {
      width            : 100%;
    }
     
    .contact_email .inputbox {
      width            : 345px;
     
    }
     
    table.moduletable, table.moduletable_menu, table.moduletable_text {
        margin           : 0 0 8px 0;
        width            : 100%;
          padding-bottom   : 2px;
        }
     
    table.moduletable th, table.moduletable_menu th, table.moduletable_text th{
          
        font-family          : Tahoma, Arial, Verdana,  Helvetica, sans-serif;
        font-size          : 12px;
        font-weight        : bold;
        text-align         : left;
        width              : 100%;
          background         : url(../images/mod.gif) #E7EAEC repeat-x top left; 
          color              : #666666;
        padding            : 2px;
          text-indent        : 10px;
        line-height        : 22px;
           border-bottom: 0px solid #999999;
            
        }
     
    table.moduletable td, table.moduletable_menu td{
        padding-top: 2px;
       
            }
     
    .lcol table.moduletable th, .lcol table.moduletable_menu th, .rcol table.moduletable th, .rcol table.moduletable_menu th{
          
          background         : url(../images/mod_lr.gif) #999999 repeat-x top left; 
          color              : #333333;
        
            
        }
     
    .sectiontableheader {
      font-size        : 12px;
      font-weight      : normal;
      text-transform   : uppercase;
      letter-spacing   : 1px;
      background         : url(../images/mod_lr.gif) #990000 repeat-x top left; 
      color              : #333333; 
      padding          : 3px;
    }
     
    td.sectiontableheader a {
    color              : #333333;
    }
     
    .sectiontableentry1 {
      vertical-align   : top;
      padding          : 3px;
      background       : #F4F5F7;
      border-bottom    : 1px solid #ffffff;
      line-height      : 18px;
     
    }
     
    .sectiontableentry2 {
      vertical-align   : top;
      padding          : 3px;
      border-bottom    : 1px solid #ffffff;
      background       : #EFF1F4;
      line-height      : 18px;
      }
     
    .sectiontableentry1 img{
     
    padding-top: 3px !important;
    padding-top: 1px;
    }
     
    .sectiontableentry2 img{
     padding-top: 3px !important;
     padding-top: 1px;
     
    }
     
    a:link, a:visited {
      
      color            : #666666;
      text-decoration  : none;
      font-weight      : bold;
    }
     
    a:hover {
      color            : #990000;
      text-decoration  : none;
      font-weight      : bold;
    }
     
     
     
    a.category:link, a.category:visited {
      font-size        : 11px;
      font-weight      : bold;
    }
     
    a.readon:link, a.readon:visited {
      color            : #666666;
      font-family      : Tahoma, Arial, Verdana, Helvetica, sans-serif;
      font-size        : 11px;
      background       : url(../images/readon.gif) no-repeat;
      white-space      : normal;
      font-weight      : normal;
      padding          : 1px 0 3px 18px;
      float            : right;
      line-height      : 10px;
      text-decoration  : underline;
    }
     
    a.readon:hover {
      color            : #990000;
      font-family      : Tahoma, Arial, Verdana, Helvetica, sans-serif;
      font-size        : 11px;
      background       : url(../images/readon.gif) no-repeat;
      white-space      : normal;
      font-weight      : normal;
      padding          : 1px 0 3px 18px;
      line-height      : 10px;
      text-decoration  : underline;
    }
     
    ul {
      margin           : 2px;
      padding-left     : 15px;
      list-style:square;
    }
     
    li {
      
      line-height      : 15px;
      padding-left     : 10px;
      padding-top      : 0;
      background-repeat: no-repeat;
      background-position: 0px 5px;
    }
     
    table.contenttoc {
      border           : 0px solid #dcdcdc;
      background       : #F1F1F1;
      padding          : 5px;
      margin-left      : 2px;
      margin-bottom    : 2px;
    }
     
    .pagenavcounter {
      font-size        : 10px;
      color            : #4B6B94;
    }
     
    .pagenavbar {
      border-top       : 1px solid #999999;
      padding          : 2px;
    }
     
    .pagination span { padding: 2px; }
    .pagination a    { padding: 2px; } 
     
    a.pagination:link, a.pagination:visited {
      font-size        : 11px;
      color            : #999999;
      text-decoration  : none;
    }
     
    a.pagination:hover {
      font-size        : 11px;
      color            : #990000;
      text-decoration  : none;
    }
     
    div.date {
      float:right;
      font-size        : 11px;
      font-weight      : bold;
      color            : #333333;
      width: 20%;
      text-align: right;
    }
     
    div.pw {
      float:left;
      width: 70%;
    }
     
    .small {
      font-size        : 10px;
      color            : #333333;
    }
     
    .smalldark {
      font-size        : 10px;
      color            : #333333;
    }
     
    .createdate, .modifydate {
      float            : left;
      font-size        : 10px;
      color            : #666666;
      font-weight      : bold;
    }
     
    .content_vote {
      font-size        : 80%;
      height           : 22px;
      padding-top      : 2px;
      padding-bottom   : 2px;
    }
     
    .content_rating {
      font-size        : 10px;
      color            : #999999;
    }
     
    .pathway {
      font-size        : 11px;
      color            : #333333;
      }
     
    a.pathway:link, a.pathway:visited {
      font-size        : 11px;
      padding-left     : 0;
    }
     
    a.pathway:hover {
      font-size        : 11px;
      padding-left     : 0;
    }
     
    table.content{
      width            : 100%;
      padding          : 0;
      border-collapse  : collapse;
      border-spacing   : 0;
      margin-bottom    : 10px;
    }
     
    table.contentpane {
      width            : 100%;
      border-spacing   : 0;
      padding-left     : 5px;
      padding-right    : 5px;
      margin-bottom    : 5px;
    }
     
    table.contentpaneopen {
      width            : 100%;
      border-spacing   : 0;
      padding-left     : 5px;
      padding-right    : 5px;
      margin-bottom    : 5px;
    }
     
    .poll {
        color : #333333;
        line-height : 12px;
        font-weight: normal;
          
    }
     
    .pollstableborder{
      border-color     : #999999;
      text-align: left;
    }
     
    .contentheading, .componentheading {
      border-bottom    : 1px solid #3B5576;
      font-size        : 110%;
      font-weight      : bold;
      line-height      : 16px;
      text-align       : left;
      text-indent      : 0;
      color            : #990000;
      width            : 100%;
      padding          : 1px;
      margin: 3px 0px;
      margin-bottom:20px;
      }
     
    td.article_column{
    padding-right: 5px;
    }
     
    .footer {
      font-size        : 11px;
      font-weight      : normal;
      margin: 0;
      padding:  0;
      height: 28px !important;
      height: 25px;
      padding-top:  0px !important;
      padding-top:  3px;
      background        : url(../images/shadow.jpg) #ffffff repeat-x top;
      vertical-align:middle;
      width:100%;
     }
     
    .lcol {
       vertical-align   : top;
       background       : #ffffff;
       padding-top: 5px;
       border-left       : 1px solid #cccccc;
       padding-left: 3px;
     
    }
     
    .rcol {
       vertical-align   : top;
       background       : #ffffff;
       padding-top: 5px;
       border-right       : 1px solid #cccccc;
       padding-right: 3px;
     
    }
     
    .foot {
      background       : none;
      vertical-align   : top;
      
    }
     
     
    .contentdescription { 
      width          : auto !important;
      margin         : 0;
      padding        :  0;
      padding-top    : 5px;
      text-align     : left;
    }
     
     
    td.top1{
    margin: 0;
    padding:  0;
    height: 28px !important;
    height: 25px;
    padding-top:  0px !important;
    padding-top:  3px;
    background      : url(../images/shadow.jpg) #ffffff repeat-x top;
    vertical-align:middle;
    padding-left:2.8%;
    padding-right:2.8%;
    }
     
    table.top2{
    background : none;
     
    }
     
    #fontsize {
        text-align:right;
        padding-right:8px;
        font-size:11px;
        }
     
    td.logoheader {
      margin : 0;
      padding:  0;
      background     : url(../images/header.gif)  #fff no-repeat bottom left;
      height         : 100px;
      width          : 100%;
     }
     
    td.topnav {
      margin : 0px;
      padding:  0px;
      background     : url(../images/bg_top.gif) repeat-x top left;
      height         : 23px;
      text-align:right;
      color:#FFF;
      padding-bottom:3px;
      font-size:15px;
     }
     
    td.topnav a , td.topnav a:visited{
      text-align:right;
      color:#FFF;
      margin-left:20px;
     }
     
    td.topnav a:hover{
      text-align:right;
      color:#333;
     }
     
    td.topnav .topnavwrapper  { padding-right:2.8%; }
    td.topnav .topnavwrapper td {text-align:right; }
     
    td.bgline {
      margin : 0px;
      padding:  0px;
      background     : url(../images/s.gif) repeat-y;
      width          : 0px;
     }
     
     
     #mainlevel-nav {
      font-size        : 14px;
      list-style       : none;
      padding          : 0;
      margin           : 0;
      margin-left      : 1px;
     
    }
     
    #mainlevel-nav li {
      float            : right;
      display          : block;
      list-style       : none;
      background-image : none;
      padding-left     : 2px;
      padding-right    : 2px;
      margin           : 0;
      width            : auto !important;
      font-size        : 11px;
      line-height      : 26px;
      white-space      : nowrap;
      border-left      : 1px solid #999999;
     
    }
    #mainlevel-nav li a {
      
      padding-left     : 10px;
      padding-right    : 10px;
      font-size        : 11px;
      color            : #333333;
      text-decoration  : none;
      
    }
     
    #mainlevel-nav li a:hover {
      font-size        : 12px;
      color            : #990000;
        
    }
     
    .blog_more {
    margin   : 10px 0 7px 7px;
    }
     
    .buttonheading {
    padding  : 0 2px;
    }
     
    span.article_separator {
    display:block;
    height:15px;
    clear: both;
    }
     
    div.caption       { padding: 0 10px 0 10px; }
    div.caption img   { border: 1px solid #CCC; }
    div.caption p     { font-size: .90em; color: #666; text-align: center; }
     
    div.mosimage         {  margin: 5px; }
    div.mosimage_caption {  font-size: .90em; color: #666; }
     
    .caption {border: 1px solid #CCC; padding: 3px;}
     
    /*  Main Menu */
    table.moduletable_menu ul, table.moduletable_menu ul li
    {
      background-image: none;
      list-style:none;
      display           : block;
      width             : auto;
      margin           : 0px 0px;
      padding          : 0;
      font-size        : 12px;
      background       : none;
    }
     
     
     
    table.moduletable_menu ul li a, table.moduletable_menu ul li a:link, table.moduletable_menu ul li a:visited
    {
      display          : block;
      font-size        : 12px;
      border           : 0px solid #666666;
      background-color : #f1f1f1;
      font-weight      : bold;
      padding          : 2px 0;
      color            : #666666;
      padding-left     : 10px;
    }
     
    table.moduletable_menu ul li a:hover
    {
      border           : 0px solid #f1f1f1;
      background-color : #f3f3f3;
      font-size        : 13px;
      font-weight      : bold;
      color            : #990000;
      text-decoration  : none;
      padding-left     : 5px;
     
    }
    table.moduletable_menu ul li.active a:link, table.moduletable_menu ul li.active  a:visited
    {
      color            : #990000;
      border           : 0px solid #666666;
      text-decoration:underline;
    }
     
     
     
    table.moduletable_menu ul li ul li a:link, table.moduletable_menu ul li ul li a:visited, table.moduletable_menu ul li ul li ul li a:link, table.moduletable_menu ul li ul li ul li a:visited
    {
       display          : block;
       font-family      : Tahoma, Verdana, Arial, Helvetica, sans-serif;
       font-size        : 11px;
       color            : #666666;
       padding        : 3px 1px 3px 5px;
       margin         : 3px;
       padding-left     : 15px;
       border: none;
    }
     
    table.moduletable_menu ul li ul li a:hover, table.moduletable_menu ul li ul li ul li a:hover{
      font-size        : 11px;
      font-weight      : normal;
      color            : #990000;
      text-decoration:none;
      padding-left     : 15px;
    }
     
    table.moduletable_menu ul li.active ul li a:link, table.moduletable_menu ul li.active ul li a:visited, table.moduletable_menu ul li.active ul li ul li a:link, table.moduletable_menu ul li.active ul li ul li a:visited
    {
       display          : block;
       font-family      : Tahoma, Verdana, Arial, Helvetica, sans-serif;
       font-size        : 11px;
       color            : #666666;
       padding        : 3px 1px 3px 5px;
       margin         : 3px;
       text-decoration  : none;
       padding-left     : 14px;
       border: none;
    }
     
    table.moduletable_menu ul li.active ul li a:hover, table.moduletable_menu ul li.active ul li ul li a:hover{
      font-size        : 11px;
      font-weight      : bold;
      color            : #990000;
      text-decoration  : none;
      padding-left     : 14px;
    }
     
    table.moduletable_menu ul li.active ul li#current a{
      font-size        : 11px;
      color            : #990000;
      text-decoration:underline;
      padding-left     : 15px;
    }
     
    table.adminform textarea {
      width      : 450px;
      height     : 400px;
      color      : #000000;
    }
     
     
    /* Tooltips */
    .tool-tip {
        float: left;
        background: #ffc;
        border: 1px solid #333333;
        padding: 5px;
        max-width: 200px;
    }
     
    .tool-title {
        padding: 0;
        margin: 0;
        font-size: 12px;
        font-weight: bold;
        margin-top: -15px;
        padding-top: 15px;
        padding-bottom: 5px;
        background: url(../../system/images/selector-arrow.png) no-repeat;
    }
     
    .tool-text {
        font-size: 12px;
        margin: 0;
    }
     
     
    /* System Standard Messages */
    #system-message dd.message ul { background: #dddddd url(../../images/notice-info.png) 4px center no-repeat;}
     
    /* System Error Messages */
    #system-message dd.error ul { color: #c00; background: #E6C0C0 url(../../system/images/notice-alert.png) 4px center no-repeat; border-top: 3px solid #DE7A7B; border-bottom: 3px solid #DE7A7B;}
     
    /* System Notice Messages */
    #system-message dd.notice ul { color: #c00; background: #EFE7B8 url(../../system/images/notice-note.png) 4px center no-repeat; border-top: 3px solid #F0DC7E; border-bottom: 3px solid #F0DC7E;}
     
    th .rcol{
        font-size:14px;}
        
    tr .rcol{
        font-size:13px;}
     

  10. #10
    Maik Tutorials.de Gastzugang
    Kann dir derzeit auch nicht sagen, was den IE8 dazu bewegt, die oberen Tabellen nach links in den nicht-sichtbaren Bereich seines Viewports zu verschieben.

    mfg Maik
     

Ähnliche Themen

  1. DIV-width wird ignoriert
    Von WiZdooM im Forum CSS
    Antworten: 9
    Letzter Beitrag: 30.01.09, 17:19
  2. ignoreWhite wird ignoriert
    Von FlorianR im Forum Flash Plattform
    Antworten: 4
    Letzter Beitrag: 03.11.08, 22:13
  3. JSP + CSS wird ignoriert
    Von y0dA im Forum Java
    Antworten: 2
    Letzter Beitrag: 13.06.07, 13:21
  4. css wird ignoriert
    Von wolfweb im Forum CSS
    Antworten: 7
    Letzter Beitrag: 28.07.05, 14:58