Hallo!
Ich habe das Menü von Stu Nicholls für meine Navigation angepasst soweit ich das so einstellen konnte.
Am Ende sollte das Menü so aussehen: http://www.kardex.ch
Wie muss ich diesen Code verändern damit die Navigation wie auf der Kardexseite aussieht:
PS: Das komplette Kardex Menü habe ich auch als gif Bilder...
Ich habe das Menü von Stu Nicholls für meine Navigation angepasst soweit ich das so einstellen konnte.
Am Ende sollte das Menü so aussehen: http://www.kardex.ch
Wie muss ich diesen Code verändern damit die Navigation wie auf der Kardexseite aussieht:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Kardex</title>
<link rel="stylesheet" media="all" type="text/css" href="kardex.css" />
<style type="text/css">
/* ================================================================
This copyright notice must be untouched at all times.
The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}
/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}
/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:10px;
font-weight:bold;
width:126px;
padding:4px 0;
color:#000;
background:#d5d8df;
text-decoration:none;
margin-right:1px;
text-align:center;
}
/* style the links hover */
.menu :hover{
color:#444;
background:#ffe6e6;
}
/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
</style>
</head>
<body>
<div class="menu">
<ul>
<li><a href="home.html">Home<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li><a href="http://www.hornecker.de">Über Uns<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="home.html">Konzern</a></li>
<li><a href="home.html">Warum Kardex</a></li>
<li><a href="expand.html">Produktion & Qualität</a></li>
<li><a href="enlarge.html">Offene Stellen</a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li><a href="../layouts/index.html">Produkte & Service<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../layouts/bodyfix.html">Lagertechnik</a></li>
<li><a href="../layouts/body2.html">Office</a></li>
<li><a href="../layouts/body4.html">Kundenservice</a></li>
<li><a href="../layouts/body5.html">Produktübersicht</a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li><a href="../boxes/index.html">Anwendungsberichte<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li><a href="../mozilla/index.html">News & Events<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li><a href="../layouts/index.html">Kontakt<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../layouts/bodyfix.html">Online Formular</a></li>
<li><a href="../layouts/body2.html">Verkauf Schweiz</a></li>
<li><a href="../layouts/body4.html">Kundenservice Schweiz</a></li>
<li><a href="../layouts/body5.html">Kardex Weltweit</a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
</ul>
</div>
</body>
</html>
PS: Das komplette Kardex Menü habe ich auch als gif Bilder...