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.

Add image to a form

  1. How do i add an image to a form? What folder does the image have to be in gravityforms? Or it doesn't have to be withing gravityforms, but pointed to a correct link?

    Posted 14 years ago on Saturday May 28, 2011 | Permalink
  2. Use the HTML block element and you can add whatever markup (including images) that you would like. You can put your image wherever you want and just path to it properly in the img tag.

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

    Posted 14 years ago on Saturday May 28, 2011 | Permalink
  3. pablogalante
    Member

    Hi, can you give an example please, I have found the html block, was able to insert the image but not able to get the results im looking for

    I simply want to insert an image which will be in the background of the form

    thanks in advance

    Posted 14 years ago on Thursday June 2, 2011 | Permalink
  4. Hi Pablo,

    If you're looking to add a background image to the form itself (aka the form fields are actually displayed on top of the image) you'll want to use CSS. Something along the lines of:

    [css]
    #gform_wrapper_1 { background: url(path/to/your/image.jpg) no-repeat; }

    Be sure to update the '1' to the ID of your form.

    Posted 14 years ago on Thursday June 2, 2011 | Permalink