So ich habe mal ne Frage.
Ich habe meine seite mit ner CSS-Datei gestalltet.
Die sieht (im Auszug)so aus :
Doch nun habe ich eine Tabelle mit links drin, und dort soll die Textfarbe immer schwarz sein. Wie mache ich das ?
Die Zeile, mit der die Tabelle erstellt wird sieht so aus :
Ich habe meine seite mit ner CSS-Datei gestalltet.
Die sieht (im Auszug)so aus :
PHP Code:
body { background-color:#0066FF; color:#FFCC66; font-size:12pt; font-family:Arial; }
h1 { font-size:20pt; font-weight:bold; }
h2 { font-size:18pt; font-weight:bold; }
h3 { font-size:16pt; font-weight:bold; }
b, strong { font-weight:bold; }
i { font-style:italic; }
em { font-style:italic; font-weight:bold; }
td { font-size:10pt; font-family:Arial; }
table{ background-color:#000099; font-size:10pt; font-family:Arial; }
a:link { color:#FFCC66; font-family:Arial; }
a:visited { color:#FFCC66; font-family:Arial; }
a:active { color:#FFCC66; font-family:Arial; }
a:hover { color:#FFCC66; font-family:Arial; }
.klein { font-size:8pt; }
.titel { font-size:24pt; font-weight:bold; font-style :italic;}
.inhalt { background-color:#0066FF; }
.eingabefeld_gb {
BORDER-RIGHT: #222222 1px solid;
BORDER-TOP: #222222 1px solid;
FONT-SIZE: 9px;
BACKGROUND: #FFCC66;
BORDER-LEFT: #222222 1px solid;
COLOR: #000000;
BORDER-BOTTOM: #222222 1px solid;
FONT-FAMILY: Verdana
}
Die Zeile, mit der die Tabelle erstellt wird sieht so aus :
PHP Code:
printf("<tr bgcolor='%s'><td><font color=#000000>$name $adresse $plz $stadt <a href=\"$url\" target=\"_blank\">Homepage</a></td></tr>", bgcolor(1));
Comment