Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    Unless I'm missing a setting I don't see anywhere where I can add custom css to a fieldset in order to get it to float.

    Any help would be appreciated.
    • CommentAuthordbuschho
    • CommentTimeJun 18th 2009
     
    Hello, by adding CSS to the custom code block, you can control the properties of a fieldset.

    http://app.formassembly.com/pages/support/customization

    Perhaps you want something like:

    <style type="text/css">
    .wForm fieldset {
    float: right !important;
    }
    </style>

    Please let us know if you need further assistance,
    FA Support.
  2.  
    I guess I should have been more specific. I'd like to float one fieldset left and one right.
    • CommentAuthordbuschho
    • CommentTimeJun 18th 2009
     
    Hello,

    Perhaps if you could provide us with a link to the specific form you are working on, we could provide you better support.

    FA Support.
  3.  
    What I'm looking to do is pretty much replicate this form:
    http://www.mortgageloans.ie/ApplyOnline.php

    I'd like to have First and Second Applicants beside each other but not in a way that it ruins the tabindex of the form.

    Here's my form thus far:
    http://app.formassembly.com/forms/view/95503
    • CommentAuthordbuschho
    • CommentTimeJun 19th 2009
     
    Hello,

    I think to do what you are trying to accomplish, you will need to specify your CSS code for each fieldset on the basis of their id (which can only be detemined by examining the code generated in the publish tab for your form). As an example:

    #tfa_PersonalDetails {
    float: left !important;
    }

    #tfa_EmploymentDetail{
    float: right !important;
    }

    etc.

    Please let us know if you have further questions,
    FA Support.
  4.  
    OK, I'll give that a try and see how I get on.

    Thanks for your help.