In der Hauptnavigation möchte ich um die jeweilige Zelle einen Rahmen haben, aber nur unten. Ich habe die Dateien aus dem Verzeichnis /cms/templates auch geändert. Hierbei taucht folgendes Problem auf:

Code: Alles auswählen
.nav_2_off {
font-family: verdana;
font-size: 11px;
font-weight: normal;
border-bottom: #F7C473 1px solid;
border-left: #F7C473 0px solid;
border-right: #F7C473 0px solid;
border-top: #F7C473 0px solid;
background-color: #FFFFFF;
padding-left:6px;
padding-right:6px;
}
.nav_2_on {
font-family: verdana;
font-size: 11px;
font-weight: normal;
border-bottom: #F7C473 1px solid;
border-left: #F7C473 0px solid;
border-right: #F7C473 0px solid;
border-top: #F7C473 0px solid;
background-color: #FCF2D5;
padding-left:6px;
padding-right:6px;
}
Code: Alles auswählen
<!-- BEGIN:BLOCK -->
<tr><td width="165" colspan="2" height="33">
<a class="nav_2_on" target="{TARGET}" href="{HREF}">{NAME}</a></td></tr>
<!-- END:BLOCK -->
Code: Alles auswählen
Code: Alles auswählen
<!-- BEGIN:BLOCK -->
<tr>
<td width="165" colspan="2" height="33">
<a class="nav_2_on" target="{TARGET}" href="{HREF}"> <<< hier ist das problem<br>hier hier hier hier</a></td>
</tr>
<!-- END:BLOCK -->
Code: Alles auswählen
.nav_2_on {
font-family: verdana;
font-size: 11px;
font-weight: normal;
border-bottom: #F7C473 1px solid;
border-left: #F7C473 0px solid;
border-right: #F7C473 0px solid;
border-top: #F7C473 0px solid;
background-color: #FCF2D5;
padding-left:0px; <<<<<<<<<<<<<<<<<<<hier 0
padding-right:6px;
}
Code: Alles auswählen
<td class="nav_2_on" width="165" colspan="2" height="33"><a target="{TARGET}" href="{HREF}">{NAME}</a></td>
Code: Alles auswählen
<!-- BEGIN:BLOCK -->
<tr>
<td class="nav_2_on" width="165" colspan="2" height="33"><a target="{TARGET}" href="{HREF}">{NAME}</a></td>
</tr>
<!-- END:BLOCK -->