Hallo Björn,
Öffne die Datei "standart.css" und ediere ein paar Zeilen um:
Rote Schrift (#FF0000 in yellow ändern):
Suche
|
Cascading style sheet
|
1
2
3
4
|
span.Stil1{
color: #FF0000;
font-family: Arial, Helvetica, sans-serif;
}
|
Ersetze mit
|
Cascading style sheet
|
1
2
3
4
|
span.Stil1{
color: yellow;
font-family: Arial, Helvetica, sans-serif;
}
|
Für weiß statt schwarz:
Suche
|
Cascading style sheet
|
1
2
3
|
body{
}
|
Ersetze mit
|
Cascading style sheet
|
1
2
3
|
body{
color: white;
}
|
Suche
|
Cascading style sheet
|
1
2
3
4
5
|
.small_black_arial{
font-size: 10px;
color: black;
font-family: Arial, Helvetica, sans-serif;
}
|
Ersetze mit
|
Cascading style sheet
|
1
2
3
4
5
|
.small_black_arial{
font-size: 10px;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
|
Suche
|
Cascading style sheet
|
1
2
3
4
|
.link_death{
text-decoration:none;
color:black;
}
|
Ersetze mit
|
Cascading style sheet
|
1
2
3
4
|
.link_death{
text-decoration:none;
color:white;
}
|
Das müsste alles sein, viel Glück.
LG Andi