Closed (fixed)
Project:
Zero Point
Version:
7.x-1.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
1 Mar 2012 at 08:04 UTC
Updated:
30 Sep 2015 at 23:53 UTC
Jump to comment: Most recent
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
Comment #1
laboratory.mikeI 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
Comment #2
florian commented