Any idea

2008paul

Paragon
Joined
Mar 10, 2009
Messages
1,039
Reaction score
0
FP$
6
28598070.png

If you look at the image, you will see that it is the text is the same colour as the banner. So what I need is for the text to be black text.

As it being a code I can't seem to work out how to do it. Here is the code.

Code:
<!-- IF not S_USER_LOGGED_IN -->
<form method="post" action="{S_LOGIN_ACTION}">
<input type="text" name="username" class="quick-login-form" title="{L_USERNAME}" value="{L_USERNAME}" onfocus="if (this.value == '{L_USERNAME}') {this.value = '';}" onblur="if (this.value == '') {this.value = '{L_USERNAME}';}" />
<input type="password" name="password" class="quick-login-form" title="{L_PASSWORD}" value="********" onfocus="if (this.value == '********') {this.value = '';}" onblur="if (this.value == '') {this.value = '********';}" />
<input type="submit" name="login" value="{L_LOGIN}" class="quick-login-button" /><br />
<!-- IF S_AUTOLOGIN_ENABLED --><label for="autologin"><input type="checkbox" name="autologin" style="margin-top: -3px;" /> Remember Me?</label><!-- ENDIF -->
<label for="viewonline"><input type="checkbox" name="viewonline" style="margin-top: -3px;" /> Hide Online Status?</label><span>&bull; <a href="ucp.php?mode=sendpassword">{L_FORGOT_PASS}</a></span>
</form>
<!-- ENDIF -->

Thanks
Paul
 
You can't seem to work it out because that isn't the code for that. The code you posted is for quick login.
 
Back
Top Bottom