Black Panther hat geschrieben:- der "Thema-Überblick" (unterhalb von "Antwort schreiben") hat noch einen äußeren Rahmen drumherum
suche in der posting_topic_review.tpl
Code: Alles auswählen
<iframe width="100%" height="300" src="{U_REVIEW_TOPIC}" >
ersetze mit:
Code: Alles auswählen
<iframe width="100%" border="0" frameborder="0" height="300" src="{U_REVIEW_TOPIC}" >
- der Rahmen der Eingabefelder ist rechts und unten dicker
suche in der overall_header.tpl
Code: Alles auswählen
/* The text input fields background colour */
input.post, textarea.post, select {
background-color : #000000;
}
ersetze mit:
Code: Alles auswählen
/* The text input fields background colour */
input.post, textarea.post, select {
background-color : #000000;
border-color: #FF0000;
border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px;
}
Die Farbe #FF0000 musst du noch an deine Farbe anpassen
die Hintergrundfarbe des select Feldes für die Farbe stimmt leider auch noch nicht
suche in der posting_body.tpl
Code: Alles auswählen
<select name="addbbcode18" onChange="bbfontstyle('[color=' + this.form.addbbcode18.options[this.form.addbbcode18.selectedIndex].value + ']', '[/color]');this.selectedIndex=0;" onMouseOver="helpline('s')">
<option style="color:black; background-color: {T_TD_COLOR1}" value="{T_FONTCOLOR1}" class="genmed">{L_COLOR_DEFAULT}</option>
<option style="color:darkred; background-color: {T_TD_COLOR1}" value="darkred" class="genmed">{L_COLOR_DARK_RED}</option>
<option style="color:red; background-color: {T_TD_COLOR1}" value="red" class="genmed">{L_COLOR_RED}</option>
<option style="color:orange; background-color: {T_TD_COLOR1}" value="orange" class="genmed">{L_COLOR_ORANGE}</option>
<option style="color:brown; background-color: {T_TD_COLOR1}" value="brown" class="genmed">{L_COLOR_BROWN}</option>
<option style="color:yellow; background-color: {T_TD_COLOR1}" value="yellow" class="genmed">{L_COLOR_YELLOW}</option>
<option style="color:green; background-color: {T_TD_COLOR1}" value="green" class="genmed">{L_COLOR_GREEN}</option>
<option style="color:olive; background-color: {T_TD_COLOR1}" value="olive" class="genmed">{L_COLOR_OLIVE}</option>
<option style="color:cyan; background-color: {T_TD_COLOR1}" value="cyan" class="genmed">{L_COLOR_CYAN}</option>
<option style="color:blue; background-color: {T_TD_COLOR1}" value="blue" class="genmed">{L_COLOR_BLUE}</option>
<option style="color:darkblue; background-color: {T_TD_COLOR1}" value="darkblue" class="genmed">{L_COLOR_DARK_BLUE}</option>
<option style="color:indigo; background-color: {T_TD_COLOR1}" value="indigo" class="genmed">{L_COLOR_INDIGO}</option>
<option style="color:violet; background-color: {T_TD_COLOR1}" value="violet" class="genmed">{L_COLOR_VIOLET}</option>
<option style="color:white; background-color: {T_TD_COLOR1}" value="white" class="genmed">{L_COLOR_WHITE}</option>
<option style="color:black; background-color: {T_TD_COLOR1}" value="black" class="genmed">{L_COLOR_BLACK}</option>
</select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
hier musst du
background-color: {T_TD_COLOR1} entweder komplett rausnehmen oder durch die Farbe deiner Wahl ersetzen.
Markus