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.

some question

  1. cuddysteph
    Member

    How can i justify text on section break ?
    How can i center my form in my page ?
    How can i put a file (link) that my client can download ?
    Thanks

    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  2. Do you have a link to your form by chance for questions 1 and 2. For question 3 you can use an HTML field which will accept HTML for you to place a link for a download. Or you could put that HTML on the confirmation text and/or in your email confirmation. Not sure what your use-case here.

    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  3. cuddysteph
    Member

    sorry is not online for the moment.

    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  4. Here is a guide to our HTML structure and CSS:

    http://www.gravityhelp.com/documentation/page/Design_and_Layout

    The centering of your form will most likely need to be done at the theme level. Section breaks can be targeted globally, or independently as each field has it's own ID. You can also add classes if you wish via the form builder.

    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  5. cuddysteph
    Member

    i find for justify the section break.
    For center no i try

    body .gform_wrapper {
    align:center
    }

    but doesn't work
    and for download files no .

    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  6. We'll need to see your form online before we can help you with the actual CSS for your specific form.

    To center the text in a section break:

    [css]
    
    body .gform_wrapper h2.gsection_title {
        text-align:center;
    }

    To center the form fields:
    http://www.gravityhelp.com/forums/topic/how-do-i-center-the-entire-form#post-68147

    To center only the form wrapper in your page:

    [css]
    body .gform_wrapper {
        margin: 0 auto!important;
    }

    To put a download link in your confirmation message to your visitor:

    [html]
    <a href="http://example.com/wp-content/uploads/file.doc">Download your file here</a>
    Posted 11 years ago on Sunday March 31, 2013 | Permalink