Hi y'all,

I've been looking around in Zero Point's CSS for a while, and I'm having trouble figuring out how to make the login block elements appear side-by-side (as opposed to being vertically stacked) in the login block. Has anyone else figured out how it's done? I'm assuming there's a few lines that need to be added somewhere in the CSS.

Comments

laboratory.mike’s picture

I figured it out! I edited sites/all/themes/zeropoint/css/style-zero.css, deleted all of the user login block code (lines 632-645), and inserted the following code:

#user-login-form div {
margin: 0 5px 0 0;
font-size: 95%;
float: left;
}
#user-login-form label, #user-login-form input {
float: left;
margin-right: 10px;
}
#user-login-form .form-required {
display: none;
}
#user-login-form .item-list ul li {
float: left;
margin: 0 15px 0.25em 0;
margin-right: 15px;
padding: 0;
list-style-type: none;
}
#block-user-login {
margin-top: 2px;
}
#block-user-login h2 {
display: none;
}

An example of this display can be found at http://www.recyclarllc.com

florian’s picture

Issue summary: View changes
Status: Active » Closed (fixed)