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.

Looking for some fine tuning of my form formatting?

  1. I'm not super CSS savvy, so looking for some code help here.

    The page in question is at http://destinationsinflorida.com/request-a-quote and we're looking to indent the form on the page in say 60 pixels or so to help eliminate some of the white space to the right hand side of the form.

    I want to make sure that any changes made don't impact the short form I am showing in the widget at http://www.destinationsinflorida.com - on that one, I'd also like a little help with code to center the name of the form and to wrap the form in a border.

    Thanks for your help?

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  2. This should get you started, be sure to place this your theme's css file:

    [css]
    #gform_wrapper_1 {
    margin: 0 60px;
    border: 1px solid black;
    padding: 10px;
    }

    The name of the form is using your theme's post title, which is outside of the gravity forms code, same with the description.

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  3. will the margin setting be in effect for the form in the widget as well ?

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  4. No, the form in the widget has a different wrapper ID. Even if it were, we'd be able to tackle that as well though with a quick overwrite.

    Posted 12 years ago on Friday November 4, 2011 | Permalink