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?
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?
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.
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
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.