You're welcome...
Something else you may want to consider...
Your code:
Code:
Select the STANDARD_ERROR template and click on "Customize" or "Edit"
search for:
<tr>
<td class="alt1">$vbphrase[password]:</td>
<td class="alt1"><input type="password" class="bginput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
change to:
<tr>
<td class="alt1">$vbphrase[password]:</td>
<td class="alt1"><input type="password" class="keyboardInput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
click "save"
Select the STANDARD_ERROR_LITE template and click on "Customize" or "Edit"
search for
<tr>
<td class="alt1">$vbphrase[password]:</td>
<td class="alt1"><input type="password" class="bginput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
change to:
<tr>
<td class="alt1">$vbphrase[password]:</td>
<td class="alt1"><input type="password" class="keyboardInput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
click "save"
Notice the code highlighted in red? If someone is searching for this code in the template, they may not locate it, because the actual code within the original template does not include the "alt1" code. Also, the code is missing a <br /> inserted after the [password]: coding.
If you use the code you have...you will see there's an error in the displaying of the password box.
You may want to use the code I have below to fix this problem:
Code:
Select the STANDARD_ERROR template and click on "Customize" or "Edit"
search for:
<tr>
<td>$vbphrase[password]:<br /><input type="password" class="bginput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
change to:
<tr>
<td>$vbphrase[password]:<br /><input type="password" class="keyboardInput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
click "save"
Select the STANDARD_ERROR_LITE template and click on "Customize" or "Edit"
search for
<tr>
<td>$vbphrase[password]:<br /><input type="password" class="bginput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
change to:
<tr>
<td>$vbphrase[password]:<br /><input type="password" class="keyboardInput" name="vb_login_password" size="50" tabindex="1" /></td>
</tr>
click "save"
Notice the changes I've made to your code in red. Users will now be able to locate the code they need to modify.
They will also be able to view the correct positioning of the password box if they use my code.
I didn't change the coding for the last STANDARD_ERROR_LOGIN template, since I don't know what this template actually does...or even how it's displayed, for that matter.
Just giving you a "heads up" so you're not hit with tons of people telling you about the problem.
BTW...if you get the chance...can you tell me when the STANDARD_ERROR_LOGIN template is seen by someone who tries to login? Is this when someone initially registers and is prompted to login? If so, you may want to test that, again as well, to make sure the password box is being displayed correctlyl.
Good luck!