Monday, May 21st 2012, 9:37pm UTC+2

You are not logged in.

  • Login
  • Register

Posts: 20

Location: Grevenbroich

1

Wednesday, April 15th 2009, 6:02pm

Schrift Farbe ändern

Hallo Zusammen,

Ich habe die wunschbox schon so weit dass sie geht,
hintergrundfarbe geändert ging alles .. nun möchte ich
Die Schriftfarbe von Schwarz ins weisse mache ..
so dass es weiss ist .... und im Adminbereich die einträge
die rot sind sollen gelb sein .. wo ändere ich das??

LG: Björn
:D

--- EDIT ---

Wunschbox Link: http://radio500.ra.funpic.de/wunschbox.php

This post has been edited 1 times, last edit by "kleinergaldor" (Apr 15th 2009, 6:02pm)


Cluster

Administrator

Posts: 1,283

Location: Salzburg/Österreich

Occupation: Student/Software Engineer

2

Wednesday, April 15th 2009, 6:08pm

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


Posts: 20

Location: Grevenbroich

3

Wednesday, April 15th 2009, 7:22pm

Ja Danke, hat wunderbar geklapt, suuuper liebes dankeschön .... :-)

Similar threads