Martin Hölter: Passt jetzt die Programmierung

Beitrag lesen

Hallo Ingo!

Noch was:

momentan setzt du für jede Überschrift folgenden CSS-Block

#mathehead {
width:99,99%;
background-color: #990000;
color:#FEFEFE;
font-size:0.7em;
text-decoration: none;
font-weight:bold;
padding:0.1em;
padding-left:0.5em;
}

und änderst dann nur die Farbe ab.

Besser wäre, nehmen wir an, du nimmst <h2> für die Überschriften:

h2 {
width:99,99%;
background-color: #990000;
font-size:0.7em;
text-decoration: none;
font-weight:bold;
padding:0.1em;
padding-left:0.5em;
}

#mathehead{
color:#FEFEFE;
}

usw.

Gruß