M
matibaski
Guest
Moin!
Hätte da eine Frage:
Wie kann man bei einem Container-RollOver das ganze Div ändern?
Also die Hintergrundfarbe soll weiss werden.
Hier sind meine bisherigen Codes:
Der dazugehörige Stylesheet:
Ich dachte irgendwie so, aber das geht natürlich nicht :mrgreen:
Hat jemand 'ne Idee/Lösung?
MfG, matibaski
Hätte da eine Frage:
Wie kann man bei einem Container-RollOver das ganze Div ändern?
Also die Hintergrundfarbe soll weiss werden.
Hier sind meine bisherigen Codes:
HTML:
<!--Navigation.php-->
<div class="menu" style="width:155px; height:auto:">
<div style="width:155px; height:20px; display:block; border-bottom:1px solid black">
<a class="menu" href="index.php?site=home&lang=hr"> Početna stranica</a>
</div>
<div style="width:155px; height:20px; display:block; border-bottom:1px solid black">
<a class="menu" href="index.php?site=zimmer&lang=hr"> Sobe</a>
</div>
<div style="width:155px; height:20px; display:block; border-bottom:1px solid black">
<a class="menu" href="index.php?site=bilder&lang=hr"> Slike</a>
</div>
<div style="width:155px; height:20px; display:block; border-bottom:1px solid black">
<a class="menu" href="index.php?site=baskavoda&lang=hr"> Baska Voda</a>
</div>
<div style="width:155px; height:20px; display:block; border-bottom:1px solid black">
<a class="menu" href="index.php?site=kontakt&lang=hr"> Kontakt</a>
</div>
<div style="width:155px; height:20px; display:block;">
<a class="menu" href="index.php?site=impressum&lang=hr"> Disclaimer</a>
</div>
</div>
Der dazugehörige Stylesheet:
Code:
/* Menü */
div.menu {
border:1px solid black;
}
.menu {
color: #000000;
font-size: 13px;
}
a.menu:link, a.menu:active, a.menu:visited {
text-decoration: none;
font-size: 13px;
display:block;
}
a.menu:hover {
text-decoration:none;
background-color:#ffffff;
font-weight:bold;
display:block;
color:#000000;
font-size: 13px;
}
Code:
a.menu:hover {
text-decoration:none;
background-color:#ffffff;
font-weight:bold;
display:block;
color:#000000;
font-size: 13px;
div.menu {
background-color:ffffff;
}
}
Hat jemand 'ne Idee/Lösung?
MfG, matibaski