Bin mir nicht ganz Sicher was Du möchtest,
Aber so woe ich das Verstehe möchtest Du die Navigatin, wo Die Login Bereich für Mitglieder ist der Grüne hintergrund in transparenz machen.
Wenn das so ist, musst in der CSS im menü "#mitglieder"
Code: Alles auswählen
#mitglieder {
width : 190px;
border-top : 3px solid #FF911B;
border-right : 3px solid #FF911B;
border-bottom : 3px solid #FF911B;
border-left : 3px solid #FF911B;
background-color : #32CD32;
font-family : arial, helvetica, tahoma, verdana, sans-serif;
font-size : 15px;
color : #FFFFFF;
margin-top : 30px;
margin-bottom : 8px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px }
Backgrund auf Transparent stellen So:
Code: Alles auswählen
#mitglieder {
width : 190px;
border-top : 3px solid #FF911B;
border-right : 3px solid #FF911B;
border-bottom : 3px solid #FF911B;
border-left : 3px solid #FF911B;
background-color : transparent;
font-family : arial, helvetica, tahoma, verdana, sans-serif;
font-size : 15px;
color : #FFFFFF;
margin-top : 30px;
margin-bottom : 8px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px }