Hi ...
Dann mach mal folgendes:
Suche in der overall_header.tpl diese Abschnitte:
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};
}
und ersetze sie mit diesen:
Code: Alles auswählen
/* Form elements */
input,textarea, select {
background-color : #000000;
color : #FFFFFF;
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 : #000000;
color : #FFFFFF;
}
input { text-indent : 2px; }
/* The buttons used for bbCode styling in message post */
input.button {
background-color : #000000;
color : #FFFFFF;
font-size: {T_FONTSIZE2}px; font-family: {T_FONTFACE1};
}
Markus