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.

Entire form on ONE line

  1. ianandamy
    Member

    Hey! I've been searching the forum for info on getting a simple lead capture form on one (name, email and submit button all on the same horizontal line) but can't seem to find an answer.

    I kinda want it to look like this:
    http://i46.tinypic.com/2rrmdzr.jpg

    Any CSS ninja help would be appreciated.

    Thanks!

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink
  2. kyle
    Member

    Did you look at CSS Ready Classes? gf_inline in particular?

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink
  3. ianandamy
    Member

    Hey Kyle! Thanks for the response, yeah I did check that out, but the submit button is stillo on the second line, I did try and apply the gf_inline to that as well... it looks like this: http://i50.tinypic.com/20a8n08.jpg

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink
  4. The submit button will need to be targeted and styled with your own CSS. Do you have a link to your form to share?

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink
  5. ianandamy
    Member

    Hey Rob! It's a site that is under development so I can't post a link, but if I need to style it with my own css, I'll figure it out! Thanks for pointing me in the right direction!

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink
  6. Cool man, yeah i'd say just use Chrome Dev Tools to inspect it and play around there with adding/customizing your CSS to see what works best on the submit button. You can make your selector as generic or specific as you want as each submit input has it's own unique ID, but there are also various classes you can hook onto if you wanted the same effect site-wide.

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink
  7. I'd try something as simple as #your_form_id * {display: inline-block; margin: 0;} in your CSS

    Posted 12 years ago on Tuesday May 1, 2012 | Permalink