Problem mit Liste
Hi Jungs,
hab mal wieder ein Problem, dieses Mal mit einer Liste. Wie ihr hier sehen könnt, ist da neben dem Pfeil-Bild noch ein Punkt zu sehen. Den bekomm ich um's Verrecken nicht weg. Mit list-style-type: image will ich's nicht machen weil da der Text immer etwas nach unten versetzt ist.
CSS:
hab mal wieder ein Problem, dieses Mal mit einer Liste. Wie ihr hier sehen könnt, ist da neben dem Pfeil-Bild noch ein Punkt zu sehen. Den bekomm ich um's Verrecken nicht weg. Mit list-style-type: image will ich's nicht machen weil da der Text immer etwas nach unten versetzt ist.
CSS:
|
|
PHP-Quelltext |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
body {
font-family: verdana, helvetica, arial, sans-serif;
font-size: 73%;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
html > body {
font-size: 9pt;
}
a {
color: rgb(61,92,122);
background-color: transparent;
text-decoration: underline;
margin: 0;
padding: 0 1px 2px 1px;
}
a:hover {
color: rgb(117,144,174);
text-decoration: none;
}
div#sidemenucontainer {
width: auto;
height: auto;
padding: 0 0 0 40px;
margin: 20px 0 0 0;
float: left;
clear: left;
}
div#sidemenucontainer li a {
background: transparent url(../img/pfeil.jpg) no-repeat 0 50%;
line-height: 15px;
text-decoration: none;
list-style-type: none;
margin: 0 0 0 0;
padding: 0 0 0 20px;
}
div#sidemenucontainer li a:hover {
color: #F286FF;
background: transparent url(../img/pfeil.jpg) no-repeat 0 50%;
list-style-type: none;
}
|
Die schnellste Funktion ist immer noch die, die gar nicht erst aufgerufen wird!
hi, das list-style-type: none; gehört nicht zum a, sondern zum li...
wenn du das dahinmachst sind die punkte weg
wenn du das dahinmachst sind die punkte weg
Über mich: www.heinervdm.de
Persönlich Mitteilungen an mich bitte als PN (nicht Email) hier im Forum. ICQ und Skype bitte nur in Notfällen.
Persönlich Mitteilungen an mich bitte als PN (nicht Email) hier im Forum. ICQ und Skype bitte nur in Notfällen.


