Nice module. I have the register button enabled and everything else set to their defaults. How can I get rid of the bullet for Request New Password and flush Remember Me, the Login and Registration buttons, and the Request New Password link to the very left so they’re aligned with the Username and Password fields?

Comments

iva2k’s picture

Status: Active » Postponed (maintainer needs more info)

Assuming you are familiar with HTML and CSS...

First, look at the source of the page with login block. Then find style.css file for your theme (or create a custom stylesheet if theme supports it), and add statements to change the style of the elements you want. The trick is to properly write the filters that grab the right component... something like this:

form#user-login-form {
  text-align: left;
}
form#user-login-form ul {
  list-style-type: none;
}
iva2k’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)