pockedesign
New member
Hallo!
Wie löst Ihr solche Navigationen?
Ich hab die nun über eine Liste gelöst. Habe allerdings Probleme im IE 6. :sad:
Ich denke eine Liste ist für diese Navigation schon dir richtige Lösung, oder?
Ich bin mir nicht sicher ob ich die Formatierung im CSS richtig angehe. Vielleicht könnt Ihr bei Gelegenheit drauf schauen und mir nur kurz bescheid geben ob die Richtung so passt.
Vielen Dank!
PS: Alle Files dazu als .zip angehängt.
Wie löst Ihr solche Navigationen?
Ich hab die nun über eine Liste gelöst. Habe allerdings Probleme im IE 6. :sad:
Ich denke eine Liste ist für diese Navigation schon dir richtige Lösung, oder?
Ich bin mir nicht sicher ob ich die Formatierung im CSS richtig angehe. Vielleicht könnt Ihr bei Gelegenheit drauf schauen und mir nur kurz bescheid geben ob die Richtung so passt.
Vielen Dank!
PS: Alle Files dazu als .zip angehängt.
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>
<link href="scripts/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container" style="margin: 20px; width: 582px;">
<div id="product_nav">
<div id="product_nav_list"><h1>Produkt 1</h1>
<ul>
<li><a href="#">Artikelbezeichnung 1</a></li>
<li><a href="#">Artikelbezeichnung 1</a></li>
<li><a href="#">Artikelbezeichnung 1</a></li>
<li><a href="#">Artikelbezeichnung 1</a></li>
<li><a href="#">Artikelbezeichnung 1</a></li>
</ul>
</div> <!-- product_nav_list -->
<div id="product_nav_list"><h1>Produkt 2</h1>
<ul>
<li><a href="#">Artikelbezeichnung 1</a></li>
</ul>
</div> <!-- product_nav_list -->
<div id="product_nav_list" style="border: none;"><h1>Produkt 2</h1>
<ul>
<li><a href="#">Artikelbezeichnung 1</a></li>
</ul>
</div> <!-- product_nav_list -->
</div> <!-- product_nav -->
</div> <!-- container -->
</body>
</html>
PHP:
/* CSS Document */
* {
margin: 0;
padding: 0;
}
#product_nav {
background-color: #b8c3d4;
height: 15px;
}
#product_nav_list {
float: left;
margin-left: 10px;
padding: 0;
border-right: 1px solid #ffffff;
}
#product_nav_list h1 {
font: bold 12px Arial, Helvetica, sans-serif;
margin: 0;
}
#product_nav_list ul {
list-style-type: none;
margin: 0;
padding-top: 5px;
padding-right: 10px;
}
#product_nav_list ul li a {
display: block;
font: normal 12px Arial, Helvetica, sans-serif;
text-decoration: none;
color: #55687b;
}
#product_nav_list ul li a:hover {
background-color: #b8c3d4;
color: #000000;
}
Anhänge
Zuletzt bearbeitet von einem Moderator: