Login page appears incorrectly - Joomla! Forum - community, help and support
hello,
my login page appears incorrectly , cannot find in either template.css file or default.php file of module, how change this.
could assist me?
the page in question here.
i aligned left , forgot username + password in logical order.
my login page appears incorrectly , cannot find in either template.css file or default.php file of module, how change this.
could assist me?
the page in question here.
i aligned left , forgot username + password in logical order.
open template.css (line 1939) , change:
with block:
on same file go line 1064 , change:
with one:
hth
code: select all
.login .login-fields label {
display: block;
float: left;
width: 10em;}with block:
code: select all
.login .login-fields label {
display: block;
float: left;
clear:both;
width: 10em;}on same file go line 1064 , change:
code: select all
input, select, textarea {
font-family: verdana,helvetica;
font-size: 11px;
font-style: normal;
font-weight: normal;
vertical-align: middle;}with one:
code: select all
input, select, textarea {
font-family: verdana,helvetica;
font-size: 11px;
font-style: normal;
font-weight: normal;
vertical-align: middle;
margin: 3px 0;}hth
Comments
Post a Comment