Hallo,
ich habe versucht mir die ul-Navigation auf die Weiterverlinkung
z.B. Seite2
Seite 2a
Seite 2b
Seite 3
gebraucht. Hier wie Seite 2. Ich habe mir unter
http://de.selfhtml.org/css/layouts/anzeige/nav_ebenen.htm
versucht mein Programm weiterzuverarbeiten. Den Abschnitt mit ul-Navigation abwärts habe ich somit erneut aufgenommen.
Nun möchte ich dass der Hintergrund gleich wie der Abschnitt davor ist.Wie kann ich das verändern??
</script>
<style type="text/css">
<!--
/* Fließtext */
textarea {
scrollbar-face-color:#000000;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#BDBCBC;
scrollbar-darkshadow-color:#000000;
scrollbar-shadow-color:#B0BAC6;
scrollbar-arrow-color:#FF0000;
scrollbar-track-color:#BDBCBC;
}
BODY {
scrollbar-face-color:#000000;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#BDBCBC;
scrollbar-darkshadow-color:#000000;
scrollbar-shadow-color:#BDBCBC;
scrollbar-arrow-color:#FF0000;
scrollbar-track-color:#BDBCBC;
}
ul#Navigation {
width: 10em;
margin: 0; padding: 0.8em;
border: 1px solid black;
background-color: silver;
}
* html ul#Navigation { /* Korrekturen fuer IE 5.x */
width: 11.6em;
w\idth: 10em;
padding-left: 0;
padd\ing-left: 0.8em;
}
ul#Navigation li {
list-style: none;
margin: 0.4em; padding: 0;
}
ul#Navigation li ul {
margin: 0 0 0 1em; padding: 0;
}
ul#Navigation li ul li {
margin: 0.1em 0;
}
* html ul#Navigation li ul li { /* Korrektur fuer IE 5.x */
margin-left: 1em;
ma\rgin-left: 0;
}
ul#Navigation a {
display:block;
padding: 0.2em;
text-decoration: none; font-weight: bold;
border: 1px solid black;
border-left-color: white; border-top-color: white;
color: maroon; background-color: #ccc;
}
* html ul#Navigation a {
width: 100%; /* Breitenangabe fuer IE 5.x */
w\idth: 8.8em; /* Breitenangabe fuer IE 6 */
}
* html ul#Navigation li ul li a {
width: 100%; /* Breitenangabe fuer IE 5.x */
w\idth: 7.8em; /* Breitenangabe fuer IE 6 */
}
ul#Navigation a:hover {
border-color: white;
border-left-color: black; border-top-color: black;
color: white; background-color: gray;
}