I just writen an drupal 6 theme but i have a problem with "User login" block. There are 2 lines: "Create new account" and "Request new password", they are not listed in left align. I have not experience on css/xhtml so anybody help me? Please take a look at the User login block at my blog http://drupalab.com

Thanks

Comments

ica’s picture

I presume you should overrun the Drupal default user login form by adding the identifier style one below to your theme

default (Garland)

#user-login-form {
  text-align: center;
}

so, add this to your theme to overrun

#user-login-form {
  text-align: left;
}

imo it does not make much sense why text-align is center in Garland anyway.

Also in Garland whole block-region text class centered, you might try to overrun it as well

.block-region {
  text-align: left;
}

Your theme looks nice, clean, spacey, very news site '2.0' style.