This is the code for the default login module:
<fieldset class="userdata">
<p id="form-login-username">
<label for="modlgn-username"><?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?></label>
<input id="modlgn-username" type="text" name="username" class="inputbox" size="18" />
</p>
<p id="form-login-password">
<label for="modlgn-passwd"><?php echo JText::_('JGLOBAL_PASSWORD') ?></label>
<input id="modlgn-passwd" type="password" name="password" class="inputbox" size="18" />
</p>
I see similar code (including the label) on your page. Seems that maybe it’s using css to hide this…
Yes -in fact I can see that it is set to display:none in your css. Change this to not have the display: none, and you should see the labels…
#login-form label {
display: none;
}
Hope that helps.
Scott Lavelle - Technical Resource Solutions, LLC
Certified Joomla Administrator