tutorials.de Buch-Aktion 05/2012
ERLEDIGT
NEIN
ANTWORTEN
2
ZUGRIFFE
350
EMPFEHLEN
  • An Twitter übertragen
  • An Facebook übertragen
DIESES THEMA IST
GESCHLOSSEN
  1. #1
    anja_tifa anja_tifa ist offline Grünschnabel
    Registriert seit
    Apr 2006
    Beiträge
    2
    Hallo,
    ich bin neu hier im Forum und hoffe es kann mir jemand helfen:
    Ich musste auf folgender Seite den Menüpunkt "Produkte" ändern:
    http://www.jmj-aloevera.com
    Wenn man jetzt seitlich auf "Produkte" klickt, wird der Inhalt aller DIV-Container auf der Y-Achse wiederholt angezeigt. Wenn ich das Fenster minimiere und wieder anzeige oder auf ein anderes Fenster und wieder zurück, ist die Anzeige normal.
    Wenn ich nur den Frame alleine anzeige, ist alles ok.
    Getestet hab ich das ganze im IE 6.0 auf 2 verschiedenen Rechnern.
    Zur Info noch das 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
    
    /* CSS Document */
     
    body {
        margin: 0px;
        padding: 0px;
        text-align: center;
        background: url(flpg01.jpg) no-repeat fixed 0% 0%;
    }
     
    * {
        font-family: Verdana, sans-serif;
        font-size: small;
        color: #333333;
    }
     
    h3 {text-align: left; font-size: medium; color: #000066;}
     
    h1, h2, h3, h4, h5, h6 {font-family: "Trebuchet MS", sans-serif; font-weight: bold; }
     
    #wrapper {
        text-align: left;
        position: relative;
        top: 90px; 
        left: 10px;
        width: 90%; 
        margin: 0; 
    }
     
    #leftcol {  
        position: absolute;
        top: 0;
        left: 0;
        width: 150px;
    }
     
    #zwcol {
        float: left; 
        width: 5px; 
        height: 240px; 
        position: absolute; 
        left: 170px; 
        border-left: 1px solid #999999;
        }
     
    #maincol {
    /*  position: absolute;
        left: 200px;
        margin-right: 160px;  */
        margin: 0 188px 0 198px; 
    }
     
    #rightcol {
        float: right; 
        width: 150px; 
        position: absolute;
        top: 0;
        right: 0;
    }
     
    ul {
        text-align:left;
        margin: 0px;
        padding: 0px;
        }
        
    li {margin: 0px;}
     
    #navright ul {
        list-style-type: none;
        margin: 5px;
        padding: 0px;
        }
        
    #navright li {margin: 0px;}
        
    #navright a {
        display:block;
        color: #000000;
        background-color: #CCCCCC;
        font-color: #000066;
        width: 9em;
        padding: 3px 12px 3px 8px;
        text-decoration:none;
        border-bottom: 3px solid white;
        font-family: Verdana, sans-serif;
        font-size: small;
        }
        
    #navright a:hover {text-decoration:underline; }
     
    .bild-us {
        font-style: italic; 
        font-size: x-small;
    }

    Hat irgendjemand eine Idee?

    Danke im Voraus!

    Anja
     

  2. #2
    Maik Tutorials.de Gastzugang
    Hallo Anja,

    willkomen im tutorials.de-Forum

    Ich bin mir jetzt nicht sicher, ob es den mysteriösen Anzeigefehler im IE behebt, aber versuche es doch mal mit diesem alternativen CSS-Code:

    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
    
    #wrapper {
            text-align: left;
            position: relative;
            top: 90px;
            left: 10px;
            width: 90%;
            margin: 0;
    }
     
    #leftcol {
            float: left;
            width: 150px;
    }
     
    #zwcol {
            float: left;
            width: 5px;
            height: 240px;
            border-left: 1px solid #999999;
            margin-right: 0 !important;
            margin-right: -3px;
    }
     
    #maincol {
            margin: 0 188px 0 198px;
    }
     
    #rightcol {
            float: right;
            width: 150px;
    }
    Anmerkung: auf meiner lokalen Festplatte tritt das Phänomen nicht auf
     

  3. #3
    anja_tifa anja_tifa ist offline Grünschnabel
    Registriert seit
    Apr 2006
    Beiträge
    2
    Danke - ich hab's gleich probiert - aber leider hab ich immer noch das gleich problem
     

Ähnliche Themen

  1. Anzeigefehler png
    Von Sundermeier im Forum PHP
    Antworten: 7
    Letzter Beitrag: 15.09.10, 10:08
  2. anzeigefehler
    Von Lexx22 im Forum CSS
    Antworten: 9
    Letzter Beitrag: 13.06.08, 19:05
  3. IE 6 Anzeigefehler
    Von Identität im Forum CSS
    Antworten: 5
    Letzter Beitrag: 12.08.07, 01:20
  4. Anzeigefehler im FF
    Von Lemmygoe im Forum CSS
    Antworten: 5
    Letzter Beitrag: 04.04.06, 19:01
  5. Anzeigefehler IE
    Von resterampe im Forum CSS
    Antworten: 10
    Letzter Beitrag: 04.04.06, 13:27