Hi Community,
da ich nun schon zwei Tage an diesem Programmcode rumexperimentiere und ich bisher noch keine Lösung gefunden habe, wende ich mich an euch.
Was ich eigentlich machen wollte ist eine Navigationsbar mit CSS die im IE und im FF laufen soll. Allerdings wird nur im Internet Explorer alles richtig angezeigt und in Mozilla nicht. Hier mal mein Code. Da ich neueinsteiger in CSS bin, kann es natürlich auch sein, dass da was falsch gelaufen ist. Danke euch schonmal im Vorraus
Gruß Pase
da ich nun schon zwei Tage an diesem Programmcode rumexperimentiere und ich bisher noch keine Lösung gefunden habe, wende ich mich an euch.
Was ich eigentlich machen wollte ist eine Navigationsbar mit CSS die im IE und im FF laufen soll. Allerdings wird nur im Internet Explorer alles richtig angezeigt und in Mozilla nicht. Hier mal mein Code. Da ich neueinsteiger in CSS bin, kann es natürlich auch sein, dass da was falsch gelaufen ist. Danke euch schonmal im Vorraus

Gruß Pase
Code:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>
</title>
<style type="text/css">
#navcontainer ul{
list-style-type: none;
text-align:right;
}
#navcontainer a {
line-height: 14px;
color:#BBA239;
font: 13px verdana;
font-weight:bold;
text-decoration:none;
display:block;
width:100px;
height:15px;
}
#navcontainer a:hover{
color:#f6e4c1;
background:transparent;
}
</style>
<body bgcolor="black">
<div style="position: absolute; width: 100px; height: 100px; z-index: 4; left: 1px; top: 0px" id="Ebene1">
<img border="0" src="fantasy4.jpg" width="183" height="637"></div>
<div id="navcontainer" style="position: absolute; width: 100px; height: 100px; z-index: 5; left: 38px; top: 247px" >
<ul>
<li><a href="#" >News</a></li>
<li><a href="#">Band</a></li>
<li><a href="#">Gigs</a></li>
<li><a href="#">Discographie</a></li>
<li><a href="#">Merch</a></li>
<li><a href="#">Guestbook</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Impressum</a></li>
</ul>
</body>
</html>