<?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: Why is &#34;&#62;&#34; next to every entry on my form?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/why-is-next-to-every-entry-on-my-form</link>
		<description>Gravity Support Forums Topic: Why is &quot;&gt;&quot; next to every entry on my form?</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 22:07:18 +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/why-is-next-to-every-entry-on-my-form" rel="self" type="application/rss+xml" />

		<item>
			<title>peschelnet on "Why is &#34;&#62;&#34; next to every entry on my form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/why-is-next-to-every-entry-on-my-form#post-81547</link>
			<pubDate>Tue, 16 Oct 2012 19:40:04 +0000</pubDate>
			<dc:creator>peschelnet</dc:creator>
			<guid isPermaLink="false">81547@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Why is &#34;&#62;&#34; next to every entry on my form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/why-is-next-to-every-entry-on-my-form#post-81535</link>
			<pubDate>Tue, 16 Oct 2012 18:18:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">81535@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Damn that Kevin! :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Why is &#34;&#62;&#34; next to every entry on my form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/why-is-next-to-every-entry-on-my-form#post-81534</link>
			<pubDate>Tue, 16 Oct 2012 18:18:04 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">81534@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That is because Gravity Forms form fields are list items, and your theme has included a background image for the list bullets. See line 2148 in &#60;a href=&#34;http://highplainsweb.com/clients/love2shop/wp-content/themes/Love2Shopv4/style.css&#34; rel=&#34;nofollow&#34;&#62;http://highplainsweb.com/clients/love2shop/wp-content/themes/Love2Shopv4/style.css&#60;/a&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.postcontent ul &#38;gt; li:before, .post ul &#38;gt; li:before, .textblock ul &#38;gt; li:before {
    bottom: 2px;
    content: url(&#38;quot;images/postbullets.png&#38;quot;);
    display: inline-block;
    font-size: 0;
    line-height: 0;
    margin-right: 6px;
    position: relative;
    vertical-align: middle;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;See this FAQ item:&#60;br /&#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;
&#60;p&#62;You can override that by adding this to the bottom of your theme's stylesheet, or wherever your them provider suggests making custom CSS changes:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper form .gform_body ul  li:before {
    content: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That took care of it for me.  Screenshot: &#60;a href=&#34;http://minus.com/lbqxAyevNK6wvD&#34; rel=&#34;nofollow&#34;&#62;http://minus.com/lbqxAyevNK6wvD&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Why is &#34;&#62;&#34; next to every entry on my form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/why-is-next-to-every-entry-on-my-form#post-81532</link>
			<pubDate>Tue, 16 Oct 2012 18:13:24 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">81532@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;your theme stylesheet is adding an image background to all of your list items and your form is inheriting it. It's a theme issue and not something with your form.&#60;/p&#62;
&#60;p&#62;Your style.css file line 2148 has this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.postcontent ul &#38;gt; li:before, .post ul &#38;gt; li:before, .textblock ul &#38;gt; li:before {
    bottom: 2px;
    content: url(&#38;quot;images/postbullets.png&#38;quot;);
    display: inline-block;
    font-size: 0;
    line-height: 0;
    margin-right: 6px;
    position: relative;
    vertical-align: middle;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can try this fix to see it it corrects the issue for you.&#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>peschelnet on "Why is &#34;&#62;&#34; next to every entry on my form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/why-is-next-to-every-entry-on-my-form#post-81530</link>
			<pubDate>Tue, 16 Oct 2012 18:08:07 +0000</pubDate>
			<dc:creator>peschelnet</dc:creator>
			<guid isPermaLink="false">81530@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;On my form I have this &#34;&#38;gt;&#34; next to every entry (Check box, Field, etc) why? &#38;amp; How do I make them go away.&#60;/p&#62;
&#60;p&#62;Here is the page.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://highplainsweb.com/clients/love2shop/?page_id=38&#34; rel=&#34;nofollow&#34;&#62;http://highplainsweb.com/clients/love2shop/?page_id=38&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thx&#60;/p&#62;
&#60;p&#62;Shawn
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
