Seite 1 von 1

button farbe ändern

Verfasst: 26.10.2006 20:38
von manuel83
Hallo, hab mein style jetzt in schwarz geändert, aber ich bekomme ich die buttons siehe bild statt weiß auch in schwarz?

[ externes Bild ]

Verfasst: 27.10.2006 12:23
von Elvis
css Datei
und einfach die background-color : #xxxxxx; in background-color : #000000; ändern.

Code: Alles auswählen

/* Form elements */
input,textarea, select {
	color : #000000;
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
	border-color : #000000;
}

/* The text input fields background colour */
input.post, textarea.post, select {
	background-color : #FFFFFF;
}

input { text-indent : 2px; }

/* The buttons used for bbCode styling in message post */
input.button {
	background-color : #EFEFEF;
	color : #000000;
	font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* The main submit button option */
input.mainoption {
	background-color : #FAFAFA;
	font-weight : bold;
}

/* None-bold submit button */
input.liteoption {
	background-color : #FAFAFA;
	font-weight : normal;
}

Verfasst: 27.10.2006 12:32
von manuel83
hallo, hab die stellen jetzt alle auf #000000 gestellt, aber die buttons sind immernoch weiß.

hier die datei:
http://manuel1983.ma.funpic.de/template ... yBlack.css

kann mal bitte jemand in der Datei nachschauen, wo der fehler noch liegt?

Verfasst: 27.10.2006 12:56
von Elvis
da du anscheinend deine css Datei nicht aktiviert hast bringt des auch nix.

templates/subSilver/overall_header.tpl

Code: Alles auswählen

/* Form elements */
input,textarea, select {
	color : {T_BODY_TEXT};
	font: normal {T_FONTSIZE2}px {T_FONTFACE1};
	border-color : {T_BODY_TEXT};
}

/* The text input fields background colour */
input.post, textarea.post, select {
	background-color : {T_TD_COLOR2};
}

input { text-indent : 2px; }

/* The buttons used for bbCode styling in message post */
input.button {
	background-color : {T_TR_COLOR1};
	color : {T_BODY_TEXT};
	font-size: {T_FONTSIZE2}px; font-family: {T_FONTFACE1};
}

/* The main submit button option */
input.mainoption {
	background-color : {T_TD_COLOR1};
	font-weight : bold;
}

/* None-bold submit button */
input.liteoption {
	background-color : {T_TD_COLOR1};
	font-weight : normal;
}

Verfasst: 27.10.2006 13:50
von manuel83
super vielen dank hat geklappt