Joseph: noch eine Frage: Bullets nicht square in NC

Beitrag lesen

<style type="text/css">
h1 { font-family:arial; font-size:18pt; font-weight:bold; color:#800040; }
h2 { font-family:arial; font-size:14pt; font-weight:bold; color:#800040; }
h3 { font-family:arial; font-size:12pt; font-weight:bold; color:#800040; }
h4 { font-family:arial; font-size:10pt; font-weight:bold; color:black; }
p   { font-family:arial; font-size:11pt; color:black; }

ul { ul list-style-type:circle }
    ul { ul list-style-type:square }

richtig:

ul { list-style-type:circle } /* O.K. */
     ul { list-style-type:square } /* Überschreibt erste Angabe */

Nicht vergessen:
</style>

Joseph