Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using .form-stacked appears to break ability to use multi-column forms #78

Closed
rufhausen opened this issue Aug 24, 2011 · 5 comments
Closed

Comments

@rufhausen
Copy link

When applying .form-stacked to the form tag, multi-column layouts appear to become broken. Removing .form-stacked resolves this. However, stacked forms are a big help when page width is at a premium, which is especially true when using multiple columns in a form.
Thanks.

@qcom
Copy link

qcom commented Aug 25, 2011

@rufhausen do you mean breaking up .form-stacked form's into multiple columns is impossible? If it's not, I am not aware of how to do it. But I am definitely wasting precious real estate with one column, .form-stacked form. Especially with a registration

with a lot of fields.

@necolas
Copy link
Contributor

necolas commented Aug 25, 2011

Have you got a reduced test case? What browser? etc.

@rufhausen
Copy link
Author

Well, actually, I just played with it some more and now it appears to be working. Not sure what I was doing wrong before.

@qcom
Copy link

qcom commented Aug 25, 2011

@rufhausen how did you split up the form into multiple layouts?

@rufhausen
Copy link
Author

Actually, I think my issue had something to do with Chrome not honoring :first-child and adding a 20px margin-left to the first column. I used the alternative CSS here (#56) to address that.
So the basic layout is:

<form>
<fieldset>
<legend></legend>
<div class="row">
<div class="span8 columns">
some form fields
</div>
<div class="span8 columns">
some more fields
</div>
</div> <!-- end row -->
</fieldset>
</form>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants