<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: How Do I Add A Background Image for the form to lay on?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on</link>
		<description>Gravity Support Forums Topic: How Do I Add A Background Image for the form to lay on?</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 18:49:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "How Do I Add A Background Image for the form to lay on?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on#post-51691</link>
			<pubDate>Wed, 07 Mar 2012 21:35:41 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">51691@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try this out:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>goldentwig on "How Do I Add A Background Image for the form to lay on?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on#post-51679</link>
			<pubDate>Wed, 07 Mar 2012 18:51:23 +0000</pubDate>
			<dc:creator>goldentwig</dc:creator>
			<guid isPermaLink="false">51679@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
 I think I'm trying to do the opposite -- I need to REMOVE the background image (bullet points) from my form, but am stumbling over the CSS. (I think I'm close but just a little off!)&#60;/p&#62;
&#60;p&#62;I was told by my Wordpress theme designer to remove the background in a fashion such as this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#some_id_from_the_gravity_form ul li {
    background: none!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;so I have tried many variations trying to figure out which id layer #some_id_from_the_gravity_form refers to and came up with this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#gform_wrapper_1 ul li {
    background: none!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It's still not getting rid of the bullet points so there must be something I'm doing wrong! Can you please help me out? Thanks!&#60;/p&#62;
&#60;p&#62;Oh and I would post the link to my form, but the site isn't live yet and you won't be able to view it until it launches.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How Do I Add A Background Image for the form to lay on?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on#post-27381</link>
			<pubDate>Wed, 08 Jun 2011 22:29:11 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">27381@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Very true. I'm pleased I could help out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vegaskev on "How Do I Add A Background Image for the form to lay on?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on#post-27377</link>
			<pubDate>Wed, 08 Jun 2011 21:21:19 +0000</pubDate>
			<dc:creator>vegaskev</dc:creator>
			<guid isPermaLink="false">27377@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Kev.....us Kev's gotta stick together!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How Do I Add A Background Image for the form to lay on?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on#post-27218</link>
			<pubDate>Tue, 07 Jun 2011 15:40:35 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">27218@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would put the rule at the end of your theme's stylesheet - usually style.css or custom.css depending on how your theme developer set it up.&#60;/p&#62;
&#60;p&#62;You would want to apply the background to a specific for ID rather than the generic class where it would apply to every form. You can view the form source to grab the ID of your form. Here's an example of the proper way to do it. The example below would be for form ID #1&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_1 {
background-image:url(http://www.mysite.com/folder/image.jpg)
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here's more information on properly targeting the form elements. There are examples that would apply to all forms, and then those for specific form IDs as well.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vegaskev on "How Do I Add A Background Image for the form to lay on?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-add-a-background-image-for-the-form-to-lay-on#post-27214</link>
			<pubDate>Tue, 07 Jun 2011 15:10:01 +0000</pubDate>
			<dc:creator>vegaskev</dc:creator>
			<guid isPermaLink="false">27214@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm trying to add a background to a form.  I need bits of advice first.&#60;/p&#62;
&#60;p&#62;1.)  Where would I make the edit to place the image as a background?&#60;/p&#62;
&#60;p&#62;2.) is the css as follows:&#60;/p&#62;
&#60;p&#62;.gform_wrapper {background-image: &#60;a href=&#34;http://mysite.com/folder/image.png;&#34; rel=&#34;nofollow&#34;&#62;http://mysite.com/folder/image.png;&#60;/a&#62;}&#60;/p&#62;
&#60;p&#62;Please let me know if I'm in the right direction with my css and in what file I would place this bit of code.&#60;/p&#62;
&#60;p&#62;I found the code in another post on the forum that had to do with changing the background color, however, I need to know where that line of code goes, as well as whether or not I have the css code written correctly.&#60;/p&#62;
&#60;p&#62;Thanks in advance.  I appreciate it.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
