Kaira: Hintergrundgrafik bei Listen

Hallo,
ich habe das Problem, dass der IE die Hintergrundgrafiken in meiner Liste nicht anzeigen will.
Im Firefox ist alles schön und super.

Also hier mein HTML-Code:

  
<div id="navi">  
 <ul>  
  <li><a href="*">*</a></li>  
 </ul>  
 <ul>  
  <li><a href="*">*</a></li>  
 </ul>  
<div id="stand">Stand: 01.M&auml;rz 09</div>  
</div>  

Und den CSS-Code dazu:

  
#navi{  
  margin-left:-40px;  
  margin-top:-590px;  
  text-decoration:none;  
  color:#000000;  
 list-style: none;  
 list-style-type: none;  
 width:231px;  
 line-height:45px;  
 text-decoration: none;  
 text-align: center;  
  }  
  
#navi ul {  
  list-style-type:none;  
}  
  
#navi ul li{  
 background: url(bilder/button.png)100%;  
 background-repeat:no-repeat;  
 list-style:none;  
   font-weight:bold;  
}  
  
#navi ul ul li {  
  background: url(bilder/button2.png)100%;  
  background-repeat:no-repeat;  
  margin-left:-15px;  
  width:210px;  
  border:none;  
  text-align:center;  
  line-height:20px;  
  margin-top: 0.5em;  
  font-style:normal;  
  font-weight:normal;  
}  

  1. Hi,

    ich habe das Problem, dass der IE

    Du solltest PositionIsEverything als Deine Startseite einrichten.

    Cheatah

    --
    X-Self-Code: sh:( fo:} ch:~ rl:| br:> n4:& ie:% mo:) va:) de:] zu:) fl:{ ss:) ls:~ js:|
    X-Self-Code-Url: http://emmanuel.dammerer.at/selfcode.html
    X-Will-Answer-Email: No
    X-Please-Search-Archive-First: Absolutely Yes
  2. Hi,

    background: url(bilder/button.png)100%;

    Da fehlt whitespace. Analog beim zweiten background:

    cu,
    Andreas

    --
    Warum nennt sich Andreas hier MudGuard?
    O o ostern ...
    Fachfragen unaufgefordert per E-Mail halte ich für unverschämt und werde entsprechende E-Mails nicht beantworten. Für Fachfragen ist das Forum da.
  3. Ja, dass habe ich jetzt auch bemerkt. ^^"

    Aber vielen Dank.
    Funktioniert jetzt alles. ^.^