Problems with Username and Password Field Alignment - Joomla! Forum - community, help and support
hi,
please can help. i'm using login module. when user enters incorrect username or password details presented fields re-enter details. unfortunately, username , password boxes misaligned (see attached image).
i've tried editing mod_login template no success. notice template.css instructs fields display block. because using css block can't add in line break between username , password fields.
the problem occurs when can displayed text size.
please can me fix alignment.
please can help. i'm using login module. when user enters incorrect username or password details presented fields re-enter details. unfortunately, username , password boxes misaligned (see attached image).
i've tried editing mod_login template no success. notice template.css instructs fields display block. because using css block can't add in line break between username , password fields.
the problem occurs when can displayed text size.
please can me fix alignment.
i resolved editing administrator/modules/mod_login/tmpl/default_login.php
and adding in <p> paragraph break below.
<div class="login-fields"><?php echo $field->label; echo '<p>'?>
then reduced width of template.css template .login-fields block
as below.
.art-j16 .login .login-fields label { width: 8em; float: left; display: block; }
and adding in <p> paragraph break below.
<div class="login-fields"><?php echo $field->label; echo '<p>'?>
then reduced width of template.css template .login-fields block
as below.
.art-j16 .login .login-fields label { width: 8em; float: left; display: block; }
Comments
Post a Comment