Beim Clean Cut Template stimmt die Darstellung der Child-Seiten im Menü nicht. Das sieht da so aus, wie in der angehängten Grafik sichtbar. Die Seite "Child" ist eine untergeordnete Seite von "Eine Seite"
Der entsprechende Abschnitt in der CSS ist dies
Code
.side1 ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.side1 ul ul {
margin: 0px;
background-color: #f1f6fa;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #e4edf5;
}
.side1 ul ul li {
padding: 0;
background-image: url(images/icon-li.gif);
background-repeat: no-repeat;
background-position: 17px;
height: 21px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #e4edf5;
text-indent: 27px;
width: 190px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #f8fafc;
}
.side1 ul ul li a {
display: block;
margin: 0px;
padding: 4px 0px 0px;
width: 190px;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: normal;
color: #2f5587;
text-decoration: none;
}
.side1 ul ul li a:hover {
padding: 4px 0px 0px;
background-image: url(images/icon-li.gif);
background-repeat: no-repeat;
background-position: 17px;
height: 17px;
text-indent: 27px;
width: 190px;
background-color: #FFFFFF;
color: #cc3300;
}
Alles anzeigen