Seite 1 von 1

Kleines Problem mit dem "BoardDisable-Mod"

Verfasst: 22.11.2005 16:04
von MySelf
Hallo,

hab hier ein ganz kleines Problem mit dem Board Disable Mod
Und zwar, habe ich einen relativ dunklen Style (FiBlue 3D) - da sieht man die Schrift so schlecht. :roll:

[ externes Bild ]

Und zwar hätte ich das gerne an den Rest angepasst. ;)

Hier mein Code + / - ein paar Zeilen:

Code: Alles auswählen

<tr> 
<td class="row1">{L_SITE_DESCRIPTION}</td>
<td class="row2"> 
<input type="text" size="40" maxlength="255" name="site_desc" value="{SITE_DESCRIPTION}" class="post" />
</td>
</tr>
	<tr>
		<th class="thHead" colspan="2">{L_DISABLE_BOARD}</th>
	</tr>
	<tr>
		<td class="row1">{L_DISABLE_BOARD}<br /><span class="gensmall">{L_DISABLE_BOARD_EXPLAIN}</span></td>
		<td class="row2"><input type="radio" name="board_disable" value="1" {S_DISABLE_BOARD_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="board_disable" value="0" {S_DISABLE_BOARD_NO} /> {L_NO}</td>
	</tr>
	<tr>
		<td class="row1">{L_DISABLE_BOARD}<br /><span class="gensmall">{L_DISABLE_MSG}</span></td>
		<td class="row2"><input type="text" value="{DISABLE_MSG}" name="disable_msg"></td>
	</tr>
	<tr>
	  <th class="thHead" colspan="2">{L_GENERAL_SETTINGS}</th>
	</tr>
<tr> 
<td class="row1">{L_ACCT_ACTIVATION}</td>
<td class="row2"> 
<input type="radio" name="require_activation" value="{ACTIVATION_NONE}" {ACTIVATION_NONE_CHECKED} />
{L_NONE}&nbsp; &nbsp; 
<input type="radio" name="require_activation" value="{ACTIVATION_USER}" {ACTIVATION_USER_CHECKED} />
{L_USER}&nbsp; &nbsp; 
<input type="radio" name="require_activation" value="{ACTIVATION_ADMIN}" {ACTIVATION_ADMIN_CHECKED} />
{L_ADMIN}</td>
</tr>
Auszug aus dem Mod:

Code: Alles auswählen

#-----[ OPEN ]------------------------------------------
#
templates/subSilver/admin/board_config.tpl

#
#-----[ FIND ]------------------------------------------
#
	<tr>
		<td class="row1">{L_DISABLE_BOARD}<br /><span class="gensmall">{L_DISABLE_BOARD_EXPLAIN}</span></td>
		<td class="row2"><input type="radio" name="board_disable" value="1" {S_DISABLE_BOARD_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="board_disable" value="0" {S_DISABLE_BOARD_NO} /> {L_NO}</td>
	</tr>

#
#-----[ REPLACE WITH ]------------------------------------------
#
	<tr>
		<th class="thHead" colspan="2">{L_DISABLE_BOARD}</th>
	</tr>
	<tr>
		<td class="row1">{L_DISABLE_BOARD}<br /><span class="gensmall">{L_DISABLE_BOARD_EXPLAIN}</span></td>
		<td class="row2"><input type="radio" name="board_disable" value="1" {S_DISABLE_BOARD_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="board_disable" value="0" {S_DISABLE_BOARD_NO} /> {L_NO}</td>
	</tr>
	<tr>
		<td class="row1">{L_DISABLE_BOARD}<br /><span class="gensmall">{L_DISABLE_MSG}</span></td>
		<td class="row2"><input type="text" value="{DISABLE_MSG}" name="disable_msg"></td>
	</tr>
	<tr>
	  <th class="thHead" colspan="2">{L_GENERAL_SETTINGS}</th>
	</tr>
Kann mir bitte jemand helfen? =]

Danke für's klicken auf dieses Thema - Doppelten Dank für das klick auf diesen Button: [ externes Bild ] :D

Verfasst: 22.11.2005 22:29
von rabbit
ersetze

Code: Alles auswählen

<td class="row2"><input type="text" value="{DISABLE_MSG}" name="disable_msg"></td>
mit

Code: Alles auswählen

<td class="row2"><input type="text" size="40" maxlength="255" class="post" value="{DISABLE_MSG}" name="disable_msg" /></td>