<?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: Form items have bullets, custom button is enlarged and has gaps</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps</link>
		<description>Gravity Support Forums Topic: Form items have bullets, custom button is enlarged and has gaps</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 16:10:57 +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/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29799</link>
			<pubDate>Tue, 12 Jul 2011 12:55:20 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">29799@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The CSS snippet I provided above does work if implemented correctly. You don't need to add the &#34;.custom&#34; class name before the body tag. The body element isn't a child of the custom div (it's actually the parent of the div) so the styles aren't being applied as you expected. If you take the &#34;custom&#34; off the front of the rule, you'll see that it works fine.&#60;/p&#62;
&#60;p&#62;So, that said, I would remove the Gravity Forms specific styles you have in there now and start fresh with the ones below. They should work just fine for you. You can see my test screenshot below.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* hide the bullets and fix the margins &#38;amp; padding */

body .gform_wrapper form .gform_body ul,
body .gform_wrapper form .gform_body ul li {
	list-style-type:none!important;
	list-style-image:none!important;
	list-style:none!important;
	background-image:none!important;
	background:none!important;
	padding:0!important;
	margin:0!important
}

/* add some new margins to the labels to fix spacing */

body .gform_wrapper label.gfield_label {
    display: block;
    margin-top: .5em
}

/* remove the borders, padding &#38;amp; backgrounds from the button image */

body .gform_wrapper .gform_footer input[type=image] {
	width:auto!important;
	border:none!important;
	background:none!important;
	padding:none!important
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/oMhNNB&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/oMhNNB&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BrettBorders77 on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29744</link>
			<pubDate>Mon, 11 Jul 2011 20:12:39 +0000</pubDate>
			<dc:creator>BrettBorders77</dc:creator>
			<guid isPermaLink="false">29744@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;here's my site:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://copybrighter.com/contact&#34; rel=&#34;nofollow&#34;&#62;http://copybrighter.com/contact&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The code you provided above does not remove the spacing around the custom button.&#60;/p&#62;
&#60;p&#62;The box model guice you sent me was very comprehensive, but my CSS sucks. What would the code be to add about .5em of vertical space between the Name: E-mail: Phone: and Comments: form elements?&#60;/p&#62;
&#60;p&#62;Thanks for any specific examples you can provide. And thanks for the help.. I know software support is not an easy job.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29729</link>
			<pubDate>Mon, 11 Jul 2011 18:09:13 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">29729@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I can't tell you anything more specific without seeing your actual form page. The screenshot doesn't help me inspect any styles that are influencing the look of your form.&#60;/p&#62;
&#60;p&#62;On the button, it's probably just a background image property and padding still being applied so you just have to override that as well.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .gform_footer input[type=image] {
width:auto!important;
border:none!important;
background:none!important;
padding:none!important
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here's a guide to show you how the forms are laid out.. they'll help you understand what elements you need to target to change the spacing you're interested in&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/resources/cssguide/css_guide.html&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/resources/cssguide/css_guide.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you want to increase spacing, then you can do that by adding top and bottom margins or padding to a variety of elements.. the containing list items, the containing div element or even to the inputs themselves and as I mentioned before, you can find specific examples on the targeting page in the documentation for each element. If you use those and apply the properties correctly, you should be good to go.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BrettBorders77 on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29720</link>
			<pubDate>Mon, 11 Jul 2011 17:50:54 +0000</pubDate>
			<dc:creator>BrettBorders77</dc:creator>
			<guid isPermaLink="false">29720@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Also.. I see a long, consfusing list of CSS styles in the CSS targeting example... but I just want to but a little bit of space around each element. What is the specific style to add space around each of the Name: e-mail: type fields?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BrettBorders77 on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29719</link>
			<pubDate>Mon, 11 Jul 2011 17:44:06 +0000</pubDate>
			<dc:creator>BrettBorders77</dc:creator>
			<guid isPermaLink="false">29719@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks a lot. this advice helps somewhat. &#60;/p&#62;
&#60;p&#62;The only outstanding, unresolved issue is the ugly grey &#34;moat&#34; or border space around my custom submit button.&#60;/p&#62;
&#60;p&#62;How do I remove it so it looks white, smooth and seamless?&#60;/p&#62;
&#60;p&#62;you can see the form here: &#60;a href=&#34;http://copybrighter.com/contact&#34; rel=&#34;nofollow&#34;&#62;http://copybrighter.com/contact&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29712</link>
			<pubDate>Mon, 11 Jul 2011 17:27:55 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">29712@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Info on how to remove the bullets is here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/frequently-asked-questions/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/frequently-asked-questions/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Info and samples on how to target and manipulate all the form elements with CSS can be found here:&#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;
&#60;p&#62;The button image that you've uploaded is being ganked up by the Thesis theme styles, not Gravity Forms. They've set a blanket style for all inputs there so you'll need to override that with something like this added to the end of your theme stylesheet.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .gform_footer input[type=image] {
width:auto!important;
border:none!important
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>BrettBorders77 on "Form items have bullets, custom button is enlarged and has gaps"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-items-have-bullets-custom-button-is-enlarged-and-has-gaps#post-29705</link>
			<pubDate>Mon, 11 Jul 2011 17:04:57 +0000</pubDate>
			<dc:creator>BrettBorders77</dc:creator>
			<guid isPermaLink="false">29705@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Now that GF is working on my site, I need to style the form into a professional and presentable contact form.&#60;/p&#62;
&#60;p&#62;Here is a picture of the form it is generating:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://skitch.com/brettborders/fjeu8/copybrighter.com-contact&#34; rel=&#34;nofollow&#34;&#62;https://skitch.com/brettborders/fjeu8/copybrighter.com-contact&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Questions:&#60;/p&#62;
&#60;p&#62;1.) How do I remove the bullets?  (I'm running Thesis 1.8.2 - latest)&#60;/p&#62;
&#60;p&#62;2.) How do I add a little bit of padding space between form elements? (They are &#34;smushed&#34; together.)&#60;/p&#62;
&#60;p&#62;3.) I have uploaded a small, exact-sized custom button I made in Photoshop and designed it in the &#34;Advanced&#34; options for the form. Gravity Forms enlages the button beyond actual size and puts an ugly grey border around it. How can I make it display actual size, no border?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
