Hallo, ich habe folgenden Quellcode:
Nun möchte ich das der Text der Links untereinander steht:
@ Link
weiterer Text
so siets aus
@Link
....weiterer Text
So soll es aussehen!!!
Wie mache ich das???
Danke für die Hilfe
Gruß Steffen
CSS:
/* = = = = = = = = = = = = = = = = = datei menue.css - Hier sind die Men?s definiert = = = = = = = = = = = = = = = = = = = = = = = = = */
/* allgemeine links im text */
a:link, a:visited, a:active{
font-family:verdana,"trebuchet ms", arial, helvetica,verdana, georgia, "times new roman", sans-serif;
font-size: 13px;line-height: 18px;
color:#003653;
text-decoration:underline;
padding-left:2px;padding-right:2px;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
}
a:hover{ text-decoration:underline;color:#fff;
background-color:#07274B;
text-decoration:none;
}
/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* menue horizontal oben */
#menu2_container {float:right;
-moz-border-radius-topleft:40px;
-moz-border-radius-topright:40px;
-moz-border-radius-bottomleft:0px;
-moz-border-radius-bottomright:0px;
-webkit-border-top-left-radius:40px;
-webkit-border-top-right-radius:40px;
-webkit-border-bottom-left-radius:0px;
-webkit-border-bottom-right-radius:0px;
border-top-left-radius:40px;
border-top-right-radius:40px;
border-bottom-left-radius:0px;
border-bottom-right-radius:0px;
-webkit-box-shadow: 0px 0px 8px #2F2F2F;
-moz-box-shadow: 0px 0px 8px #2F2F2F;
box-shadow: 0px 0px 8px #2F2F2F;
}
#menu2 {padding-left:14px;padding-right:14px;
background-color:#07274B;
background-image:url(images/back2.png);
background-repeat:repeat-y;
background-position:50% 50%;
float:right;
text-align:center;
border:solid 1px #000;
height:40px;
line-height:40px;
-moz-border-radius-topleft:40px;
-moz-border-radius-topright:40px;
-moz-border-radius-bottomleft:0px;
-moz-border-radius-bottomright:0px;
-webkit-border-top-left-radius:40px;
-webkit-border-top-right-radius:40px;
-webkit-border-bottom-left-radius:0px;
-webkit-border-bottom-right-radius:0px;
border-top-left-radius:40px;
border-top-right-radius:40px;
border-bottom-left-radius:0px;
border-bottom-right-radius:0px;
-webkit-box-shadow: 0px 2px 8px #fff;
-moz-box-shadow: 0px 2px 8px #fff;
box-shadow: inset 0px 2px 8px #fff;
}
#menu2 ul, #menu2 li {display: inline;color:#2FB6FF;text-shadow: 1px 1px 0px #000;
list-style-type: none;
margin-left:0px;
padding: 0px;
margin:0px;text-align:center;
Nun möchte ich das der Text der Links untereinander steht:
@ Link
weiterer Text
so siets aus
@Link
....weiterer Text
So soll es aussehen!!!
Wie mache ich das???
Danke für die Hilfe
Gruß Steffen
Zuletzt bearbeitet von einem Moderator: