belafarinrod91
Lt. Junior Grade
- Registriert
- Apr. 2010
- Beiträge
- 338
Hi Leute,
hab folgendes Problem, würde gerne eine Seite fertig machen und den Hover Effekt den ich für das Menü erstellt habe, funktioniert irgendwie nur bei mir in Safari. In Firefox und Opera funktioniert nur der erste Button "Start". Woran liegt das bitte ???
HTML
und das CSS
Das ganze findet ihr online unter www.geo-exploring.de/hmtl/index.html
Wäre echt wenn ihr mir helfen würdet/könntet ...
LG Bela
hab folgendes Problem, würde gerne eine Seite fertig machen und den Hover Effekt den ich für das Menü erstellt habe, funktioniert irgendwie nur bei mir in Safari. In Firefox und Opera funktioniert nur der erste Button "Start". Woran liegt das bitte ???
HTML
HTML:
<div id="navigation">
<div class="navi">
<img src="main_index/menu_links.gif" width="110px" height="59px" >
</div>
<div class="navi">
<a href="../start.html"><img class="normal" src="main_index/Start1.gif" width="116px"height="59px"></a>
<a href="../start.html"><img class="hover" src="main_index/Start1_hover.gif" width="116px"height="59px"></a>
</div>-->
<div class="navi">
<a href="../fotos.html"><img class="normal" src="main_index/Fotos2.gif" width="118px"height="59px"></a>
<a href="../fotos.html"><img class="hover" src="main_index/Fotos2_hover.gif" width="118px"height="59px"></a>
</div>
<div class="navi">
<a href="../videos.html"><img class="normal" src="main_index/Videos3.gif" width="133px"height="59px"></a>
<a href="../videos.html"><img class="hover" src="main_index/Videos3_hover.gif" width="133px"height="59px"></a>
</div>
<div class="navi">
<a href="../wir.html"><img class="normal" src="main_index/uberuns4.gif"width="170px"height="59px"></a>
<a href="../wir.html"><img class="hover" src="main_index/uberuns4_hover.gif"width="170px"height="59px"></a>
</div>
<div class="navi">
<a href="../gb.html"><img class="normal" src="main_index/Gastebuch5.gif"width="197px"height="59px"></a>
<a href="../gb.html"><img class="hover" src="main_index/Gastebuch5_hover.gif"width="197px"height="59px"></a>
</div>
<div class="navi">
<img src="main_index/menu_rechts.gif" width="156px"height="59px">
</div>
und das CSS
.navi {
display:inline;
}
.navi img.normal {
display: inline;
}
.navi img.hover {
display: none;
}
.navi:hover img.normal {
display: none;
}
.navi:hover img.hover {
display: inline;
}
#navigation {
float: left;
width: 1000px;
color: #000000;
margin: 0px 00px 0px 0px;
background-color:#000000; }
Das ganze findet ihr online unter www.geo-exploring.de/hmtl/index.html
Wäre echt wenn ihr mir helfen würdet/könntet ...
LG Bela
Zuletzt bearbeitet von einem Moderator:
([HTML] statt [QUOTE])