PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

More Single Row Questions

  1. I've read all the threads on how to align two fields on the same line, and added code to my CSS but I just can't seem to get it working correctly. Can someone help me?

    The site is: http://www.bigskyretreat.com/register/registration-form/

    In the section: HOW DID YOU FIND US? I want:
    - Website and Referring Website on one line
    - Center/Church and Referring Center/Church on one line
    - Referring Person and Referred By on one line

    I added this code to my CSS and it doesn't work at all (experimenting with website/referring website):

    }
    #gform_wrapper_1 #field_31 {
    	float:left;
    }
    #gform_wrapper_1 #field_32 {
    	float:right;
    	margin-left:10px!important;
    }
    Posted 11 years ago on Saturday April 13, 2013 | Permalink
  2. Richard Vav
    Administrator

    Hi, your close, try something like this, adjusting the width to whatever you prefer

    #field_1_31, #field_1_33, #field_1_35 {
        width: 48%;
        float: left;
    }
    #field_1_32, #field_1_34, #field_1_36 {
        width: 48%;
        float: right;
        clear: right;
    }

    Regards,
    Richard
    --
    Just another member of the community helping out where I can

    Posted 11 years ago on Saturday April 13, 2013 | Permalink
  3. Ah, wonderful! I tweaked it around a bit but it's looking fantastic. Thanks for your help!

    Posted 11 years ago on Tuesday April 16, 2013 | Permalink

This topic has been resolved and has been closed to new replies.