HTH-C.com - Forum
Latest News Latest Threads
Neuerung: Persönliche Galerie
Informationen zur Übernahme der Erweite..
HTH Blog - Version 2.0
#HTH.Systems - Betatester gesucht
Neueröffnung - PHPKit-Award.de
HTH Webchat v3
Letzter Beitrag Happy Birthday Bottyline Weiblicher Benutzer Heute, 0:00 Zeit der letzten Antwort
Letzter Beitrag PHPKit 1.6.6 Treffnix Männlicher Benutzer 14.03.2024 - 05:20 Zeit der letzten Antwort
Letzter Beitrag Gibt es eigentlich noch jemand der PHPki.. Treffnix Männlicher Benutzer 14.03.2024 - 05:19 Zeit der letzten Antwort
Letzter Beitrag Herzlich Willkommen Botty Männlicher Benutzer 22.02.2024 - 12:50 Zeit der letzten Antwort
Letzter Beitrag PHPKit 1.6.6 ohne ASCE auf PHP8x Myrddin Männlicher Benutzer 22.03.2023 - 12:36 Zeit der letzten Antwort
 53.399 Posts & 4.945 Themen in 78 Foren
Forenübersicht » Support / Hilfe » Allgemein » Verschiedenes » CSS Multi Menü Problem

CSS Multi Menü Problem
7 Beiträge in diesem Thema
 Seiten (1):    1  
03.12.2016 - 15:48 Uhr
Beitrag: #1
Hallo liebe Leute,

ich habe da ein kleines, aber nervendes Problem mit meinem Multi CSS Menü.

Die Submenü Ebene 1 funktioniert: (PS: Der IMG Tag funktioniert hier nicht)
*Link entfernt*/images/Menu01.png

Sobald ich aber ein weiteres Submenü öffne funktioniert der Link aus Submenü 1 nicht mehr, der das zweite Submenü öffnet:
*Link entfernt*/images/Menu02.png

Es war ursprünglich nur ein Menü mit 1 Submenü Ebene! Ich habe das also selber versucht zu erweitern, jedoch habe ich da wohl entweder Denkfehler oder ich mache prinzipiell etwas falsch.

Hier ist der 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

PHP-Quelltext

/* Menu */
.menu {    
    
positionrelative;
    
height40px;
    
margin-left:5px;
    
margin-right:5px;
     

    
background#ffec64;
    
background: -webkit-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
background: -moz-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
background: -o-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
background: -ms-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
backgroundlinear-gradient(top#ffec64  0%,#ffab23  100%);

    
    
-webkit-border-radius20px 20px 0 0;
    -
moz-border-radius20px 20px 0 0;
    
    
border-radius:20px 20px 0 0;
}

.
menu li {
    
positionrelative;
    list-
stylenone;
    
floatleft;
    
displayblock;
    
height38px;
    
z-index:999;
}

/* Links */

.menu li a {
    
displayblock;
    
padding0 14px;
    
margin6px 0;
    
line-height28px;
    
text-decorationnone;
    
min-width:60px;
    
text-align:center;    
    
    
border-left1px solid #393942;
    
border-right1px solid #4f5058;

    
font-familyArialHelveticasans-serif;
    
font-weightbold;
    
font-size14px;

    
color:#090909;
    
    
text-shadow0px 1px 1px rgba(204,51,0,.6);

    -
webkit-transitioncolor .2s ease-in-out;
    -
moz-transitioncolor .2s ease-in-out;
    -
o-transitioncolor .2s ease-in-out;
    -
ms-transitioncolor .2s ease-in-out;
    
transitioncolor .2s ease-in-out;
}

.
menu li:first-child a border-leftnone; }
.
menu li:last-child aborder-rightnone; }

.
menu li ul:first-child a {border1px solid #FFC966;}
.menu li ul:last-child aborder1px solid #FFC966;}

.menu li ul li:first-child a {border1px solid #FFC966;}
.menu li ul li:last-child aborder1px solid #FFC966;}

.menu li:hover 
    
background-color:#0C0C0C;
    
color#FFF; 
}

/* Sub Menu */
/* Erste Ebene */
.menu ul {
    
positionabsolute;
    
top45px;
    
left: -40px;
    
opacity0;

    -
webkit-border-radius0 0 5px 5px;
    -
moz-border-radius0 0 5px 5px;
    
border-radius0 0 5px 5px;

    -
webkit-transitionopacity .25s ease .1s;
    -
moz-transitionopacity .25s ease .1s;
    -
o-transitionopacity .25s ease .1s;
    -
ms-transitionopacity .25s ease .1s;
    
transitionopacity .25s ease .1s;
}
/* Zweite Ebene */
.menu ul li ul{
    
positionabsolute;
    
top0;
    
left:0;
    
    
    
opacity0;

    -
webkit-border-radius0 0 5px 5px;
    -
moz-border-radius0 0 5px 5px;
    
border-radius0 0 5px 5px;

    -
webkit-transitionopacity .25s ease .1s;
    -
moz-transitionopacity .25s ease .1s;
    -
o-transitionopacity .25s ease .1s;
    -
ms-transitionopacity .25s ease .1s;
    
transitionopacity .25s ease .1s;
}

.
menu li:hover ul opacity1; }

.
menu ul li {
    
height0;
    
overflowhidden;
    
padding0;
    
background#0C0C0C;

    
-webkit-transitionheight .25s ease .1s;
    -
moz-transitionheight .25s ease .1s;
    -
o-transitionheight .25s ease .1s;
    -
ms-transitionheight .25s ease .1s;
    
transitionheight .25s ease .1s;
    
border1px solid #070707;    
}

.
menu ul li ul li {
    
height0;
    
overflowhidden;
    
padding0;
    
background#0C0C0C;

    
-webkit-transitionheight .25s ease .1s;
    -
moz-transitionheight .25s ease .1s;
    -
o-transitionheight .25s ease .1s;
    -
ms-transitionheight .25s ease .1s;
    
transitionheight .25s ease .1s;
    
border1px solid #070707;    
}


/* Erstes Submenü */
.menu li:hover ul li {
    
height26px;
    
overflowvisible;
    
left:0;
    
padding0;
}
/* Zweites Submenü */
.menu li ul li:hover ul li {
    
top:-1px;
    
height26px;
    
overflowvisible;
    
left:180px;

    
padding0;
    
}

.
menu ul li a {
    
width176px;    
    
padding0px 0 0px 40px;
    
margin0;
    
left:0;
    
border1px solid #FFC966;
    
color#f2f2f2;
    
text-align:left;
    
font-size12px;
    
font-weight:bold;
    
line-height20px;    
    
}

.
menu ul li:hover color#FFC966; }
.menu ul li:last-child a {  }

/* Submenü Icons */
.menu a.downloads backgroundurl(../images/kcmenu/download.pngno-repeat 6px center; }
.
menu a.docs backgroundurl(../images/kcmenu/docs.pngno-repeat 6px center; }
.
menu a.rss backgroundurl(../images/kcmenu/rss.pngno-repeat 6px center; }
.
menu a.forum backgroundurl(../images/kcmenu/forum.pngno-repeat 6px center; }
.
menu a.movie backgroundurl(../images/kcmenu/movie.pngno-repeat 6px center; }
.
menu a.gbook backgroundurl(../images/kcmenu/book.pngno-repeat 6px center; }
.
menu a.home backgroundurl(../images/kcmenu/home.pngno-repeat 6px center; }
.
menu a.spend backgroundurl(../images/kcmenu/money.pngno-repeat 6px center; }
.
menu a.muser backgroundurl(../images/kcmenu/user.pngno-repeat 6px center; }
.
menu a.museredit backgroundurl(../images/kcmenu/user_profile.pngno-repeat 6px center; }
.
menu a.mim backgroundurl(../images/kcmenu/im.pngno-repeat 6px center; }
.
menu a.mimr backgroundurl(../images/kcmenu/im_received.pngno-repeat 6px center; }
.
menu a.mims backgroundurl(../images/kcmenu/im_send.pngno-repeat 6px center; }
.
menu a.mforum backgroundurl(../images/kcmenu/favorites.pngno-repeat 6px center; }
.
menu a.msecrets backgroundurl(../images/kcmenu/secrets.pngno-repeat 6px center; }
.
menu a.logout backgroundurl(../images/kcmenu/logout.pngno-repeat 6px center; }


Und hier der HTML Code (Ausschnitt):



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

PHP-Quelltext

<ul class="menu">
    <
li><a href="?path=contentarchive&amp;type=4">Downloads</a>
        <
ul>
            <
li><a href="?path=contentarchive&amp;type=4&amp;catid=47" class="downloads">&raquoASCE Pluginsystem</a>
             <
ul>
               <
li><a href="?path=download&amp;contentid=557" class="downloads">&raquoASCE Pluginsystem 1.6.6</a></li>
               <
li><a href="?path=download&amp;contentid=460" class="downloads">&raquoASCE Pluginsystem 1.6.5</a></li>
               <
li><a href="?path=download&amp;contentid=559" class="downloads">&raquoASCE 1.6.6 Testscript</a></li>
             </
ul>
            </
li>
            <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52" class="downloads">&raquoPHPKIT 1.6.6 ASCE Plugins</a>
             <
ul>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=80" class="downloads">&raquo1.6.6 Addons</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=81" class="downloads">&raquo1.6.6 BB-Codes</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=82" class="downloads">&raquo1.6.6 Codesnipsel</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=86" class="downloads">&raquo1.6.6 Community Patches</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=83" class="downloads">&raquo1.6.6 GSV und Module</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=84" class="downloads">&raquo1.6.6 Navboxen</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=85" class="downloads">&raquo1.6.6 Profil</a></li>
               <
li><a href="?path=contentarchive&amp;type=4&amp;catid=52&amp;themeid=93" class="downloads">&raquo1.6.6 Security Module</a></li>
             </
ul>
            </
li>
            <
li><a href="?path=contentarchive&amp;type=4&amp;catid=51" class="downloads">&raquoPHPKIT 1.6.5 ASCE Plugins</a></li>
            <
li><a href="?path=contentarchive&amp;type=4&amp;catid=53" class="downloads">&raquoPHPKIT 1.6.5&amp;1.6.6 Styles</a></li>
        </
ul>
    </
li>
</
ul>


Im Klartext bedeutet das:

Hauptmenü (Funktioniert) => Erstes Submenü (Funktioniert) => Zweites Submenü (Öffnet sich, aber Link aus Submenü 1, der das zweite Submenü öffnete ist nicht mehr klickbar)

Wäre schön, wenn ein CSS Menümeister mir dabei helfen könnte. Ich fine den Fehler einfach nicht...  

 
Zum Anfang der Seite
03.12.2016 - 18:56 Uhr
Beitrag: #2
Bin zwar kein Meister bei sowas, hab es aber trotzdem bei mir mal getestet.

Getestet mit folgenden Browsern:
Opera 12.15
Firefox 47.0.1

Ergebnis ist:
Die Einstellung opacity war in beiden Browsern immer irgendwie an etwas Schuld.


Bei Opera ging z.B. das Menu nicht mehr richtig zu:


Im Firefox wollte er Partout nicht den nachfolgenden Link im zweiten Untermenu nehmen. Stattdessen ging das zweite Untermenu des nächsten ersten Untermenu auf.
Also so:

Der Aufbau ist ja so.



1
2
3
4
5
6
7
8
9

Quellcode

ASCE Pluginsystem
ASCE Pluginsystem 1.6.6
ASCE Pluginsystem 1.6.5
..

PHPKIT 1.6.6 ASCE Plugins
1.6.6 Addons
1.6.6 BB-Codes
> ..
Wenn ich also auf ASCE Pluginsystem > ASCE Pluginsystem 1.6.5 wollte, ging das Menu für PHPKIT 1.6.6 ASCE Plugins auf und fokussierte dann 1.6.6 - Addons.


Lösung war bei mir (Änderungen sind markiert):



  • 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

    Quellcode

    /* Menu */
    .menu {    
         
    positionrelative;
         
    height40px;
         
    margin-left:5px;
         
    margin-right:5px;
          

         
    background#ffec64;
         
    background: -webkit-linear-gradient(top#ffec64  0%,#ffab23  100%);
         
    background: -moz-linear-gradient(top#ffec64  0%,#ffab23  100%);
         
    background: -o-linear-gradient(top#ffec64  0%,#ffab23  100%);
         
    background: -ms-linear-gradient(top#ffec64  0%,#ffab23  100%);
         
    backgroundlinear-gradient(top#ffec64  0%,#ffab23  100%);

         
         
    -webkit-border-radius20px 20px 0 0;
         -
    moz-border-radius20px 20px 0 0;
         
         
    border-radius:20px 20px 0 0;
     }

     .
    menu li {
         
    positionrelative;
         list-
    stylenone;
         
    floatleft;
         
    displayblock;
         
    height40px;
         
    z-index:999;
     }

    /* Links */

    .menu li a {
         
    displayblock;
         
    padding0 14px;
         
    margin6px 0;
         
    line-height28px;
         
    text-decorationnone;
         
    min-width:60px;
         
    text-align:center;    
         
         
    border-left1px solid #393942;
         
    border-right1px solid #4f5058;

         
    font-familyArialHelveticasans-serif;
         
    font-weightbold;
         
    font-size14px;

         
    color:#090909;
         
         
    text-shadow0px 1px 1px rgba(204,51,0,.6);

         -
    webkit-transitioncolor .2s ease-in-out;
         -
    moz-transitioncolor .2s ease-in-out;
         -
    o-transitioncolor .2s ease-in-out;
         -
    ms-transitioncolor .2s ease-in-out;
         
    transitioncolor .2s ease-in-out;
     }

     .
    menu li:first-child a border-leftnone; }
     .
    menu li:last-child aborder-rightnone; }

     .
    menu li ul:first-child a {border1px solid #FFC966;}
    .menu li ul:last-child aborder1px solid #FFC966;}

    .menu li ul li:first-child a {border1px solid #FFC966;}
    .menu li ul li:last-child aborder1px solid #FFC966;}

    .menu li:hover 
         
    background-color:#0C0C0C;
         
    color#FFF; 
    }

    /* Sub Menu */
     /* Erste Ebene */
    .menu ul {
         
    positionabsolute;
         
    top40px/* damit die UL-Box direkt unterhalb des LI-Element ist */
         
    left: -40px;
         
    padding-top5px/* für den obigen Abstand */

         
    displaynone/* als Ersatz für opacity: 0; */

         
    -webkit-border-radius0 0 5px 5px;
         -
    moz-border-radius0 0 5px 5px;
         
    border-radius0 0 5px 5px;

         -
    webkit-transitionopacity .25s ease .1s;
         -
    moz-transitionopacity .25s ease .1s;
         -
    o-transitionopacity .25s ease .1s;
         -
    ms-transitionopacity .25s ease .1s;
         
    transitionopacity .25s ease .1s;
     }
    /* Zweite Ebene */
    .menu ul li ul{
         
    positionabsolute;
         
    top0;
         
    left:180px/* Vertikaler Abstand für alle Untermenus (auch alle nachkommenden Ebenen) */
         
         
         
    padding-top0px/* Damit die Untermenus nicht horizontal verrutschen */

         
    displaynone/* als Ersatz für opacity: 0; */

         
    -webkit-border-radius0 0 5px 5px;
         -
    moz-border-radius0 0 5px 5px;
         
    border-radius0 0 5px 5px;

         -
    webkit-transitionopacity .25s ease .1s;
         -
    moz-transitionopacity .25s ease .1s;
         -
    o-transitionopacity .25s ease .1s;
         -
    ms-transitionopacity .25s ease .1s;
         
    transitionopacity .25s ease .1s;
     }
     .
    menu li:hover ul displayblock; } /* als Ersatz für opacity: 1; */

     
    .menu ul li {
         
    height0;
         
    overflowhidden;
         
    padding0;
         
    background#0C0C0C;

         
    -webkit-transitionheight .25s ease .1s;
         -
    moz-transitionheight .25s ease .1s;
         -
    o-transitionheight .25s ease .1s;
         -
    ms-transitionheight .25s ease .1s;
         
    transitionheight .25s ease .1s;
         
    border1px solid #070707;    
    }

     .
    menu ul li ul li {
         
    height0;
         
    overflowhidden;
         
    padding0;
         
    background#0C0C0C;

         
    -webkit-transitionheight .25s ease .1s;
         -
    moz-transitionheight .25s ease .1s;
         -
    o-transitionheight .25s ease .1s;
         -
    ms-transitionheight .25s ease .1s;
         
    transitionheight .25s ease .1s;
         
    border1px solid #070707;    
    }


    /* Erstes Submen&uuml; */
    .menu li:hover ul li {
         
    height26px;
         
    overflowvisible;
         
    left:0;
         
    padding0;
     }
    /* Zweites Submen&uuml; */
    .menu li ul li:hover ul li {
         
    top:-1px;
         
    height26px;
         
    overflowvisible;
         
    left:0/* Auf 0 gesetzt; der alte Wert 180px in die CSS-Klasse ".menu ul li ul" weiter oben als "left:180px;" */

         
    padding0;
         
     }

     .
    menu ul li a {
         
    width176px;    
         
    padding0px 0 0px 40px;
         
    margin0;
         
    left:0;
         
    border1px solid #FFC966;
         
    color#f2f2f2;
         
    text-align:left;
         
    font-size12px;
         
    font-weight:bold;
         
    line-height20px;    
         
     }

     .
    menu ul li:hover color#FFC966; }
    .menu ul li:last-child a {  }

    /* Submen&uuml; Icons */
    .menu a.downloads backgroundurl(../images/kcmenu/download.pngno-repeat 6px center; }
     .
    menu a.docs backgroundurl(../images/kcmenu/docs.pngno-repeat 6px center; }
     .
    menu a.rss backgroundurl(../images/kcmenu/rss.pngno-repeat 6px center; }
     .
    menu a.forum backgroundurl(../images/kcmenu/forum.pngno-repeat 6px center; }
     .
    menu a.movie backgroundurl(../images/kcmenu/movie.pngno-repeat 6px center; }
     .
    menu a.gbook backgroundurl(../images/kcmenu/book.pngno-repeat 6px center; }
     .
    menu a.home backgroundurl(../images/kcmenu/home.pngno-repeat 6px center; }
     .
    menu a.spend backgroundurl(../images/kcmenu/money.pngno-repeat 6px center; }
     .
    menu a.muser backgroundurl(../images/kcmenu/user.pngno-repeat 6px center; }
     .
    menu a.museredit backgroundurl(../images/kcmenu/user_profile.pngno-repeat 6px center; }
     .
    menu a.mim backgroundurl(../images/kcmenu/im.pngno-repeat 6px center; }
     .
    menu a.mimr backgroundurl(../images/kcmenu/im_received.pngno-repeat 6px center; }
     .
    menu a.mims backgroundurl(../images/kcmenu/im_send.pngno-repeat 6px center; }
     .
    menu a.mforum backgroundurl(../images/kcmenu/favorites.pngno-repeat 6px center; }
     .
    menu a.msecrets backgroundurl(../images/kcmenu/secrets.pngno-repeat 6px center; }
     .
    menu a.logout backgroundurl(../images/kcmenu/logout.pngno-repeat 6px center; }



Wobei ich mich gefragt habe wofür die overflow: visible|hidden; sein sollen. Bei mir gab es da keinen visuellen Effekt - ob nun da oder auskommentiert  


Zur Info vll. noch:
In Opera gibt es bei mir bei den Link:Hovern ein Problem - was ich so auch nicht wirklich lösen konnte. Statt den aktuell ausgewählten Link im Untermenu wird immer der darüberliegende Link gehovert (wenn der Link der erste ist passiert nichts). Keine Ahnung welche der Einstellungen Mist baut ^^""


 
Zum Anfang der Seite
03.12.2016 - 19:41 Uhr
Beitrag: #3
Vielen Dank. Läuft alles bestens!

*Link entfernt*/include.php?path=start

Alle Fehler sind behoben   Ich hatte das Menü aus dem Internet. Hatte da lediglich das Design geändert und das zweite Menü eingefügt. Die visible Dinger waren schon da drin  cool Aber danke. Alles geht    

 
Zum Anfang der Seite
03.12.2016 - 20:33 Uhr
Beitrag: #4
Nur zur Info  Bääääh (in Opera 12.15)



 
Zum Anfang der Seite
03.12.2016 - 21:15 Uhr
Beitrag: #5
Opera benutzt ja auch keiner mehr   Tja, im Firefox und Edge + IE ist alles toll   Keine Ahnung was das ist. Ich habe das 1:1 von dir übernommen. Hast du denn die aktuellste Opera Version ?

EDIT://

Habe mir den Opera mal heruntergeladen und nun sieht es auch dort normal aus  cool

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von DustFireSky - 04.12.2016 - 04:34 Uhr
 
Zum Anfang der Seite
04.12.2016 - 06:02 Uhr
Beitrag: #6
Die 12er Version ist auch nicht mehr die aktuellste. Aber eine der letzten vor den Neustart beim Browser-Hersteller (gab da irgendwie einen Umbruch).

Wie auch immer; ich könnte dir nichtmal genau sagen wo das Problem ist. Weder krieg ich diesen Dragonfly-Modus (aktuelles DOM angucken, bearbeiten etc.) bei dir zum laufen (war schon immer doof bei Opera [langsam, nur online verfügbar]; da macht Firefox nen besseren Job), noch komm ich mit Firefox (25.0.1, 47.0.1) auf deine Seite (403-Meldung). Lustigerweise krieg ich auch in Opera 10.00 mit "Als Opera ausgeben" eine 403-Meldung; bei "Als Firefox ausgeben" geht sie (aber noch kein Dragonfly-Modus enthalten) - versteh das einer .. ^^"" Und nein, im Firefox ist bis auf ein paar Kleinigkeiten in den Einstellungen (nicht den Config-Modus) nichts geändert.

Und wie gesagt; hatte den CSS-Code mit Opera 12.15 probiert. Siehst ja im Bild von oben - es ging ja. Wahrscheinlich wird einfach irgendeine Einstellung als Standard übernommen.

Du könntest ja (sofern natürlich die Lust vorhanden ;p) mal folgendes probieren:



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

Quellcode

.menu {    
    
positionrelative;
    
height40px;
    
margin-left:5px;
    
margin-right:5px;
       

    
background#ffec64;
    
background: -webkit-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
background: -moz-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
background: -o-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
background: -ms-linear-gradient(top#ffec64  0%,#ffab23  100%);
    
backgroundlinear-gradient(top#ffec64  0%,#ffab23  100%);

      
    
-webkit-border-radius20px 20px 0 0;
    -
moz-border-radius20px 20px 0 0;
      
    
border-radius:20px 20px 0 0;


    
/* Änderung */
    
margin-top0px;
    
margin-bottom0px;
    
padding0px;
  }
Vielleicht reicht das ja schon (also die Änderungen unten).


 
Zum Anfang der Seite
04.12.2016 - 06:44 Uhr
Beitrag: #7
Das mit den Browserkennungen ist schnell erklärt  

Es war einmal ein Spambot, der kam immer unter ganz alten Browserkennungen daher, da packte der Webmaster den Vorschlaghammer aus und prügelte das einfach in eine .htaccess Datei. Tot war der Spambot. ENDE  lachend

Firefox Versionen kleiner als 48 und IE kleiner 11 werden blockiert. Dadurch habe ich 90 % weniger Spam auf der Seite  

Ich verstehe trotzdem nicht so recht, was du meinst. Das Menü ist ja an der richtigen Stelle. Oder meinst du das gelegentliche Springen ? Das liegt an dem Javascript was vorher geladen wird um die "Letzten Contents" anzuzeigen via Blätterfunktion. Wenn das aus ist springt das Teil auch nicht. Das Javascript behindert sogesehen das Rendern des Browsers bis das Script fertiggeladen ist. Das meinte auch Tante Google Pagespeed  cool Aber das ist zu verkraften.

Immerhin habe ich es geschafft das PHPKIT auf den Google Pagespeed Rank 97/100 zu bekommen. Der Rest lässt sich nicht ändern. Ist teils PHPKIT bedingt.

So sieht es bei mir im Opera aus:

*Link entfernt*/images/Menu03.png

Die Opera 10 Version ist nicht mehr die aktuellste. Da musste ich lachen  lachend Die aktuellste ist die Version 41!

Dieser Beitrag wurde bereits 3 mal editiert, zuletzt von DustFireSky - 04.12.2016 - 06:56 Uhr
 
Zum Anfang der Seite
 Seiten (1):    1  

Ähnliche Themen
 
Support Support » Multi-Video-Station - Letzte Antwort von DustFireSky am 21.01.13, 15:46 Multi-Video-Station  (21.01.13, 15:46)
Support Support » .MOV Dateien und Multi-Video-Station - Letzte Antwort von mono am 21.02.14, 13:01 .MOV Dateien und Multi-Video-Station  (21.02.14, 13:01)
Verschiedenes Verschiedenes » superfish menü - navbox - Letzte Antwort von k!r!ka am 28.01.14, 20:30 superfish menü - navbox  (28.01.14, 20:30)
Support Support » Staus menü und Usermap - Letzte Antwort von solingerjung am 29.10.07, 17:19 Staus menü und Usermap  (29.10.07, 17:19)
Support Support » probs mit der menü leiste - Letzte Antwort von BooGT am 11.12.06, 18:41 probs mit der menü leiste  (11.12.06, 18:41)

HTH-C.com - Webmedien & Community