List-Style-Type:none; funktioniert bei meinem Script nicht. Bitte um Hilfe!!

Status
Nicht offen für weitere Antworten.

Pase89

Grünschnabel
Hallo zusammen,

bevor ich diesen Beitrag nun schrieb, habe ich natürlich die Suchfunktion im Forum benützt, leider brachte mir diese, für mein Problem, keine richtige Lösung.
Daher wende ich mich nun an euch. Ich habe in CSS ein Script geschrieben, alles läuft, bis auf diese Listen Punkte, die ich nicht wegbekomme.
Ich haber euch hier mal den kompletten Code reingestellt. Bitte helft mir, denn ich weiß gerade nicht mehr ein und aus. Danke.

Liebe Grüße

Pase89

Code:
<html>
<head>
<title>
</title>

<style type="text/css">

#navi{

width:200px;
color:black;
background:transparent;
padding:1.6em;
margin:-10px;
margin-top:5em;
height:200px;
}

#navi a{
color:#BBA239;
font:bold 13px verdana, sans-serif;
margin:5px 0 5px 0;
padding:1px 3px 1px 4px;
text-decoration:none;
background:#363537;
display:block;
border-top:1px solid #99917d;
border-right:1px solid #e4d9c0;
border-bottom:1px solid #e4d9c0;
border-left:1px solid #99917d;
width:155px;
height:24px;

}

#navi a:hover{
color:#f6e4c1;
background:transparent;
border-top:1px solid #e4d9c0;
border-right:1px solid #837c6b;
border-bottom:1px solid #837c6b;
border-left:1px solid #e4d9c0;}


</style>

<body bgcolor="black">
<table border="0">

<tr>
<td>
<img src="logo_gross.gif" height="108" width="209" alt="" border="0">
</td>
</tr>
<tr>
<td>

<div id="navi">
<ul style="list-style-type:none; margin:0; padding:0;">
<a href="#"><span class="dot">•&nbsp;</span>News</a>
<a href="#"><span class="dot">•&nbsp;</span>Band</a>
<a href="#">•&nbsp;Gigs</a>
<a href="#">•&nbsp;Discographie</a>
<a href="#">•&nbsp;Guestbook</a>
<a href="#">•&nbsp;Contact</a>
<a href="#">•&nbsp;Impressum</a>
<a href="#">•&nbsp;Merch</a>
</ul>
</div>
</td>
</tr>

</body>
</html>
 
Hi,

dann entferne mal das "•"-Zeichen innerhalb der Links, und notiere diese innerhalb des li-Elements, denn list-style-type:none funktioniert hier einwandfrei:

Code:
<div id="navi">
  <ul style="list-style-type:none; margin:0; padding:0;">
    <li><a href="#">News</a></li>
    <li><a href="#">Band</a></li>
    <li><a href="#">Gigs</a></li>
    <li><a href="#">Discographie</a></li>
    <li><a href="#">Guestbook</a></li>
    <li><a href="#">Contact</a></li>
    <li><a href="#">Impressum</a></li>
    <li><a href="#">Merch</a></li>
  </ul>
</div>
 
Status
Nicht offen für weitere Antworten.
Zurück