<?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: Increase submit button size in chrome</title>
		<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome</link>
		<description>Gravity Support Forums Topic: Increase submit button size in chrome</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:57:01 +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/increase-submit-button-size-in-chrome" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75257</link>
			<pubDate>Fri, 14 Sep 2012 00:13:05 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75257@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Rocketgenius is in Virginia Beach Virginia, but I do support for them from Chicago, Illinois. It's not too late here :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zephyrpoint on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75255</link>
			<pubDate>Thu, 13 Sep 2012 23:58:14 +0000</pubDate>
			<dc:creator>zephyrpoint</dc:creator>
			<guid isPermaLink="false">75255@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is awesome... and you work late! Aren't you on the east coast? Thanks for your quick reply, Chris. You guys certainly make it easy to come for help. I will certainly be recommending Gravity Forms when the opportunity arises.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75254</link>
			<pubDate>Thu, 13 Sep 2012 23:52:55 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75254@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;blockquote&#62;&#60;p&#62;Okay. Those worked great. I am learning that a more specific selector such as input.gform_next_button will override a less specific selector such as input.button, correct?&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;True&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Now I just need to know the more specific selectors. Can you tell me how to specifically target the &#34;submit&#34; button and the &#34;choose file&#34; button on the file upload form field?&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Because you're going to be doing this a lot, I would recommend getting familiar with how to find the class or id of the element you want to target.  Take a look at the source of the rendered page where the form was embedded (just load the page in your browser and &#34;view source&#34;.)  Search the page for some text which uniquely identifies the item you want to style (like &#34;next&#34; or &#34;previous&#34; or &#34;submit&#34;.)  Here's what I found in the source of my page when I went looking for the &#34;Submit&#34; button:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
&#38;lt;div class=&#38;#39;gform_footer left_label&#38;#39;&#38;gt; &#38;lt;input type=&#38;#39;submit&#38;#39; id=&#38;#39;gform_submit_button_62&#38;#39; class=&#38;#39;button gform_button&#38;#39; value=&#38;#39;Submit&#38;#39; tabindex=&#38;#39;43&#38;#39; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You could target this one button on this one form with an id specific rule, like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
#gform_submit_button_62 {
	font-size: 20px;
	padding: 20px;
	color: green;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But that will only work for the submit button on this one form.  Note that an ID is prefixed with the hash mark in your stylesheet (#gform_submit_button_62).  Classes are more generic (you can have multiple elements on a page with the same class: the ID must be unique and used on only one element in the form.)&#60;/p&#62;
&#60;p&#62;So, to be more generic and give all your form submit buttons the same style, you could target by class:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
input[&#38;#39;submit&#38;#39;] .gform_button {
	font-size: 20px;
	padding: 20px;
	color: green;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That will give any submit input element with the class (prefix with a . for a class) .gform_button your custom style.  However, this is not a very specific rule.  We want our custom rule to always &#34;win&#34; so we need to make it more specific.  If you look at the source of the web page, you will see that it's a series of nested elements.  You can chain these elements together and come up with a very specific rule, which will still apply to all your Gravity Forms.  Looking at the source of my page, I find I can do this, based on where the form is located in my page:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper form .gform_footer input[&#38;#39;submit&#38;#39;] .gform_button {
	font-size: 20px;
	padding: 20px;
	color: green;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now we have a very specific rule which should win out over any less generic rule, and not affect any other buttons on your site.&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
By the way, is there another place I could be looking to learn this stuff, too? I don't mind searching... I kinda like it sometimes. Is it written into a .css file somewhere in the /plugins/gravityforms directory? I didn't find anything about a &#34;submit&#34; button in forms.css (or a &#34;gform_next_button&#34; or &#34;gform_previous_button&#34; for that matter). Cheers!&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;I've never looked at the forms.css file.  I don't know what rules are written there.  I just follow the procedure above to find a very specific chain of elements that I can use to ensure my rule is more specific than any other rule which might be present in a theme stylesheet or even in the Gravity Forms forms.css.&#60;/p&#62;
&#60;p&#62;Here is some documentation on CSS specificity which is what we're using to ensure our rules &#34;win&#34;. &#60;a href=&#34;http://css-tricks.com/specifics-on-css-specificity/&#34; rel=&#34;nofollow&#34;&#62;http://css-tricks.com/specifics-on-css-specificity/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There are other tools which make finding the class and ID easier, but this is a good way to start.  Just remember that classes use a period in your style rule, and ids use a hash mark.  If you get stuck on something, post a link to where you applied it online and we'll check it out for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zephyrpoint on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75250</link>
			<pubDate>Thu, 13 Sep 2012 23:34:13 +0000</pubDate>
			<dc:creator>zephyrpoint</dc:creator>
			<guid isPermaLink="false">75250@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Okay. Those worked great. I am learning that a more specific selector such as input.gform_next_button will override a less specific selector such as input.button, correct? Now I just need to know the more specific selectors. Can you tell me how to specifically target the &#34;submit&#34; button and the &#34;choose file&#34; button on the file upload form field? &#60;/p&#62;
&#60;p&#62;By the way, is there another place I could be looking to learn this stuff, too? I don't mind searching... I kinda like it sometimes. Is it written into a .css file somewhere in the /plugins/gravityforms directory? I didn't find anything about a &#34;submit&#34; button in forms.css (or a &#34;gform_next_button&#34; or &#34;gform_previous_button&#34; for that matter). Cheers!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75207</link>
			<pubDate>Thu, 13 Sep 2012 20:20:16 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75207@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can target the next and previous buttons like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_page_footer input.gform_next_button {
    color: green;
}

body .gform_page_footer input.gform_previous_button {
    color: red;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>zephyrpoint on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75192</link>
			<pubDate>Thu, 13 Sep 2012 19:30:40 +0000</pubDate>
			<dc:creator>zephyrpoint</dc:creator>
			<guid isPermaLink="false">75192@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Okay... I'm getting a little more direction from this post from Chris Hajer: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/next-and-submit-button-styling&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/next-and-submit-button-styling&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;BUT now my question is how do I style the Next, Previous, and Submit buttons separately? The &#60;code&#62;.gform_wrapper input.button  {...&#60;/code&#62; CSS Chris mentioned in the other post styles all of the buttons. I searched for &#34;next&#34; and &#34;previous&#34; in forms.css trying to find the class name for those buttons without success (don't worry - I'm not making my changes in forms.css). Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zephyrpoint on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-75190</link>
			<pubDate>Thu, 13 Sep 2012 19:10:28 +0000</pubDate>
			<dc:creator>zephyrpoint</dc:creator>
			<guid isPermaLink="false">75190@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm pretty new to CSS, and I'm having trouble with the size of my form buttons too. After several attempts, I managed to increase the font-size, but now, just like developyourenglish, I'm having a padding problem with the button. I figured that since the font-size changed, the padding would too, but no luck. Also, the font-size only changed on the submit button of the form, and not the next and previous buttons. Any help? My form is here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://zephyrpoint.org/conference-guest-evaluation&#34; rel=&#34;nofollow&#34;&#62;http://zephyrpoint.org/conference-guest-evaluation&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-46029</link>
			<pubDate>Tue, 10 Jan 2012 18:18:15 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">46029@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Actually, we have the browser selectors built in now. Sorry about that. If you view the source you can see at the top of the wrapper it will show you the current browser you are using as part of the class:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/bxrL&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/bxrL&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can use that to get more specific with your submit button selector. Sorry, that completely slipped my mind here!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ulrich on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-46015</link>
			<pubDate>Tue, 10 Jan 2012 17:34:36 +0000</pubDate>
			<dc:creator>Ulrich</dc:creator>
			<guid isPermaLink="false">46015@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I had already tried that but there was still a difference between IE and Chrome. I think I will try this tip from Kevin unless you have a better solution&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/ie-safari-chrome-discrepencies&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/ie-safari-chrome-discrepencies&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Increase submit button size in chrome"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-submit-button-size-in-chrome#post-46003</link>
			<pubDate>Tue, 10 Jan 2012 17:07:09 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">46003@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorry, I just provided you with a way to target that particular submit button. Font-size was just an example. You can use padding as well, or whatever other CSS declarations you want. You would want to place this into your theme's stylesheet.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#gform_submit_button_1 {
padding: 5px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you want to target all submit buttons in GF, you could use a less specific selector:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_wrapper .gform_footer input[type=&#38;quot;submit&#38;quot;] {
padding: 5px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You have a reset rule in your stylesheet that is setting the padding to 0.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
