Hallo,
auf meiner Homepage
http://vigilate.de.tl habe ich ein Collmenü, was allerdings ständig wandert oder verschwindet, wenn man eine neue Seite anklickt. Auf der Startseite liegt es perfekt, aber auf den anderen Seiten nicht.
Habt ihr eine Idee, wei man das ändern könnte?
Ich habe mal die Codes für das Klappmenü hier rein gestellt, vielleicht habe ich ja vergessen was ein zu fügen:
/* Feld um das Klappmenu */
#klappmenu {
position: absolute;
font-family: arial; /* = Link Schriftart */
margin-top: -885px; /* Abstand von oben anpassen */
margin-left: 465px; /* Abstand zur linken Seite anpassbar */
width: 800px; /* die Breite anpassbar */
overflow: hidden;}
/* Button Breite + Rahmen + Abstand */
#liste li {
width: 135px;
float: left;
text-align: center;
border: 1px solid #1f2315;
margin-right: 5px;
margin-left: 5px; }
/* Button Linkfarbe + Hintergrundfarbe */
#liste a {
display: block;
padding: 5px 5px 5px 5px;
color: #000000;
font-size: 13px;
background-color: #556b2F;
text-decoration: none; }
/* Button Hover-Farbe */
#liste a:hover {
color: #000000;
background-color: #840c14; }
#liste li ul { display:none; } /* eingeklappt */
#liste li:hover ul { display:block; } /* ausgeklappt */
#klappmenu ul { list-style-type: none; margin:0px; padding: 0px; }
#liste ul li { margin: 0; border: none; }