ich hoffe ihr könnt mir helfen.
Die Navigation unserer Seiten ist bisher in einer Tabelle.
Sie sollte aber als DIV sein:
Hier ist eine Musterseite, bei der ich die obige Navigation (in Tabelle) am FUSS der Seite als DIV nachzubilden versuche.
https://www.online-seilgarten.de/!navig ... s-div.html
Das probiere schon die ganze Zeit, aber bei "a:hover" legt sich das blaue Quadrat über die Schrift und nicht unterhalb ???
Und hier das CSS zur Navigation unten:
Code: Alles auswählen
/* Navigation unten */
#nav-unten {
font-family: Verdana, Arial, sans-serif;
font-size: 12px;
text-decoration: none;
height: 40px;
padding:10px;
margin:10px;
background-color:#fff;
color:#fff;
border-bottom: 1px solid #6F8C8F;
}
#nav-unten a {
color: #46688E;
text-decoration: none;
}
#nav-unten a:hover {
text-decoration:none;
background-color:#fff;
background-image:url(images/cube.gif);
background-repeat:no-repeat;
background-position:50% 100%;
border-bottom:solid 0px #4d81b1;
}
Code: Alles auswählen
/* menue oben */
#menu1 a, #menu1 a:visited , #menu1 a:active {display: block;
color:#46688E;
text-decoration:none ;font-family:verdana, sans-serif; font-size: 12px;
padding-left: 10px;padding-right: 10px; padding-bottom: 0px; padding-top:0px;
margin-left: 0px;margin-right: 0px;
border-left:solid 0px #AAAAAA;
height:40px;
line-height:40px;
text-align:center;
border-bottom:solid 0px #fff;
background-color:#fff;
}
#menu1 a:hover {background-color:#4d81b1; text-decoration:none ;
background-color:#fff;
background-image:url(images/cube.gif);
background-repeat:no-repeat;
background-position:50% 100%;
border-bottom:solid 0px #4d81b1;
}
.trenn {width:1px;background-color:#fff;color:#C0CB67}