Hat jemand eine Gedankenanstoss, wie ich folgende Navigation in phpwcms anwenden kann?
Welchen Navi-Tag ist hier anzuwenden?
http://www.cssplay.co.uk/menus/breadcrumb.html
CSS:
Code: Select all
/* ================================================================
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/breadcrumb.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.
=================================================================== */
.menu, .menu ul {
padding:0;
margin:0;
list-style:none;
}
.menu {
border:1px solid #ddd;
border-width:1px 0 1px 1px;
position:relative;
z-index:500;
}
.menu table {
border-collapse:collapse;
padding:0;
margin:0 0 -1px 0;
width:0;
height:0;
font-size:1em;
}
.menu ul {
position:absolute;
left:-9999px;
}
.menu li {
width:180px;
height:42px;
float:left;
}
.menu li a {
display:block;
width:100%;
height:42px;
line-height:42px;
color:#777;
text-decoration:none;
font-size:12px;
font-family:"lucida grande", arial, sans-serif;
text-indent: 50px;
float:left;
}
.menu li.sub a {
background:url(breadcrumbs/grey.gif) no-repeat 150px center;
}
.menu li a:hover {
white-space:nowrap;
position:relative;
color:#06f;
}
.menu li.sub a:hover {
background:url(breadcrumbs/blue.gif) no-repeat 150px center;
color:#06f;
}
.menu li.sub a b {
display:block;
color:#06f;
font-weight:normal;
}
.menu li:hover {
position:relative;
}
.menu li:hover.sub > a {
background:url(breadcrumbs/blue.gif ) no-repeat 150px center;
color:#06f;
}
.menu li.home {
background:url(breadcrumbs/home.gif) no-repeat 10px center;
}
.menu li.products {
background:url(breadcrumbs/graph.gif) no-repeat 10px center;
}
.menu li.services {
background:url(breadcrumbs/services.gif) no-repeat 10px center;
}
.menu li.shop {
background:url(breadcrumbs/flower.gif) no-repeat 10px center;
}
.menu li.contacts {
background:url(breadcrumbs/mail.gif) no-repeat 10px center;
}
.menu li.privacy {
background:url(breadcrumbs/lock.gif) no-repeat 10px center;
}
.menu :hover ul {
width:120px;
height:auto;
left:165px;
top:7px;
background:#fcfcfc;
border:1px solid #ddd;
}
.menu :hover ul :hover ul, .menu :hover ul :hover ul :hover ul, .menu :hover ul :hover ul :hover ul :hover ul, .menu :hover ul :hover ul :hover ul :hover ul :hover ul {
width:120px;
height:auto;
left:115px;
top:-1px;
background:#fcfcfc;
border:1px solid #ddd;
border-width:1px 0 1px 1px;
}
.menu :hover ul ul, .menu :hover ul :hover ul ul, .menu :hover ul :hover ul :hover ul ul, .menu :hover ul :hover ul :hover ul :hover ul ul {
left:-9999px;
width:0;
height:0;
}
.menu :hover ul li, .menu :hover ul li a {
width:120px;
height:25px;
line-height:25px;
text-indent:10px;
float:none;
}
.menu :hover ul li.sub a, .menu :hover ul :hover ul li.sub a, .menu :hover ul :hover ul :hover ul li.sub a, .menu :hover ul :hover ul :hover ul :hover li.sub a, .menu :hover ul :hover ul :hover ul :hover ul :hover li.sub a {
background:url(breadcrumbs/grey.gif) no-repeat 100px center;
color:#777;
}
.menu :hover ul li.sub a:hover, .menu :hover ul :hover ul li.sub a:hover, .menu :hover ul :hover ul :hover ul li.sub a:hover, .menu :hover ul :hover ul :hover ul :hover ul li.sub a:hover {
background:url(breadcrumbs/blue.gif) no-repeat 100px center;
color:#06f;
}
.menu :hover ul li.sub:hover > a, .menu :hover ul :hover ul li.sub:hover > a, .menu :hover ul :hover ul :hover ul li.sub:hover > a, .menu :hover ul :hover ul :hover ul :hover ul li.sub:hover > a {
background:url(breadcrumbs/blue.gif) no-repeat 100px center;
color:#06f;
}
.menu :hover ul li a, .menu :hover ul :hover ul li a, .menu :hover ul :hover ul :hover ul li a, .menu :hover ul :hover ul :hover ul :hover ul li a, .menu :hover ul :hover ul :hover ul :hover :hover ul li a {
background:#fcfcfc;
color:#777;
}
.menu :hover ul li a:hover, .menu :hover ul :hover ul li a:hover, .menu :hover ul :hover ul :hover ul li a:hover, .menu :hover ul :hover ul :hover ul :hover ul li a:hover, .menu :hover ul :hover ul :hover ul :hover ul :hover ul li a:hover {
background:#fcfcfc;
color:#06f;
}
.menu li.sub a b, .menu :hover li.sub a b, .menu :hover ul :hover li.sub a b, .menu :hover ul :hover ul :hover li.sub a b, .menu :hover ul :hover ul :hover ul :hover li.sub a b, .menu :hover ul :hover ul :hover ul :hover ul :hover li.sub a b {
display:block;
color:#06f;
font-weight:normal;
}
.menu li.sub a.selected b, .menu :hover ul li.sub a.selected b, .menu :hover ul :hover ul li.sub a.selected b, .menu :hover ul :hover ul :hover ul li.sub a.selected b, .menu :hover ul :hover ul :hover ul :hover ul li.sub a.selected b, .menu :hover ul :hover ul :hover ul :hover ul :hover ul li.sub a.selected b {
display:block;
background:#fcfcfc;
color:#06f;
font-weight:normal;
}
Vielen Dank