In earlier versions on Omega there was an option for a horizontal user login block, as seen in the Gamma theme.

Does this still exist? I can't find it anywhere.

Comments

JSCSJSCS’s picture

Status: Fixed » Active

It does not exist in the current version. But this may help if you want to try to recreate it:

Context and Omega: User Zone
http://mydrupaljourney.com/articles/2011/06/16/context-and-omega-user-zone

MrPaulDriver’s picture

Thank you.

That works, but I'm really looking for something which hides the labels, showing just the input boxes and the submit button

JSCSJSCS’s picture

Most of the items in the User login form have ID's or classes. Just use 'display:none' and they will go away.

For example, to remove the "Create new account" and "Request new password", just add the following CSS:


#user-login-form .item-list {
    display: none;
}
MrPaulDriver’s picture

That did it

I needed to split the values below also

#user-login-form label {
float: left;
margin-right: 10px;
display: none;
}

#user-login-form input {
float: left;
margin-right: 10px;
background-color: #000;
}

JSCSJSCS’s picture

Status: Active » Fixed

Great! Good Job.

Status: Active » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

slpkenney’s picture

Can anyone explain to me how to use the login from http://www.victheme.com/blog/drupal-7-creating-horizontal-login-bar-with...

Jane_newbie’s picture

I have a Drupal 7 site with the Marinelli theme and wanted to have a horizontal user login (or the equivalent functionality) placed discreetly in the footer section. As a noob, I tried to find a solution that didn't involve coding. Here's my solution:

I created a block with two words in the body - "login" and "logout" and linked the "login" text to www.mysite.com/user/login and linked the "logout" to www.mysite.com/?q=user/logout
I put this block into the footer section.
This gave me the functionality I wanted; also, it solved an additional problem that many others seem to be having - that once logged in, there is no logout button. (Administrators can logout from the Dashboard overlay, but this isn't available for other users.)
Other folks are having this logout button problem as well - see http://drupal.org/node/1102820