<?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: Use current themes default button CSS when using multi page forms?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms</link>
		<description>Gravity Support Forums Topic: Use current themes default button CSS when using multi page forms?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 02:34:53 +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/use-current-themes-default-button-css-when-using-multi-page-forms" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-152744</link>
			<pubDate>Sat, 23 Feb 2013 01:10:25 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">152744@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're welcome.  Thanks for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dmayer5 on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-151045</link>
			<pubDate>Wed, 20 Feb 2013 17:08:49 +0000</pubDate>
			<dc:creator>dmayer5</dc:creator>
			<guid isPermaLink="false">151045@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Rob:&#60;/p&#62;
&#60;p&#62;That worked perfectly thank you very much!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-151017</link>
			<pubDate>Wed, 20 Feb 2013 15:55:02 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">151017@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try this out instead to target the next and previous buttons:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_wrapper .gform_page_footer .button.gform_next_button, .gform_wrapper .gform_page_footer .button.gform_previous_button {
color:#ffffff;
padding-top:4px;
padding-bottom:4px;
padding-left:10px;
padding-right:10px;
border: 1px solid rgba(114,114,114,0.4);
border-radius: 1px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 1px 0px rgba(114,114,114,0.3);
-moz-box-shadow: 0 1px 0px rgba(114,114,114,0.3);
-webkit-box-shadow: 0 1px 0px rgba(114,114,114,0.3);
background-color: #0096d6;
}

body .gform_wrapper .gform_page_footer .button.gform_next_button:hover, body .gform_wrapper .gform_page_footer .button.gform_previous_button:hover {
border: 1px solid rgba(114,114,114,0.6);
background-color: #444444;

}
body .gform_wrapper .gform_page_footer .button.gform_next_button:active, body .gform_wrapper .gform_page_footer .button.gform_previous_button:active { top: 1px; }&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>dmayer5 on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-150645</link>
			<pubDate>Wed, 20 Feb 2013 02:41:44 +0000</pubDate>
			<dc:creator>dmayer5</dc:creator>
			<guid isPermaLink="false">150645@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok I need help with one more thing. I want to add a multipage form to the website. I looked in the forms.css and found the portion for the &#34;multi-page form paging&#34; settings. Neither the &#34;next, previous, or submit buttons&#34; had styling So I added this to my theme css: &#60;/p&#62;
&#60;p&#62;.gform_wrapper .gform_page_footer .button.gform_button  {&#60;br /&#62;
	color:#ffffff;&#60;br /&#62;
padding-top:4px;&#60;br /&#62;
padding-bottom:4px;&#60;br /&#62;
padding-left:10px;&#60;br /&#62;
padding-right:10px;&#60;br /&#62;
border: 1px solid rgba(114,114,114,0.4);&#60;br /&#62;
border-radius: 1px;&#60;br /&#62;
-moz-border-radius: 3px;&#60;br /&#62;
-webkit-border-radius: 3px;&#60;br /&#62;
box-shadow: 0 1px 0px rgba(114,114,114,0.3);&#60;br /&#62;
-moz-box-shadow: 0 1px 0px rgba(114,114,114,0.3);&#60;br /&#62;
-webkit-box-shadow: 0 1px 0px rgba(114,114,114,0.3);&#60;br /&#62;
background-color: #0096d6;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;body .gform_wrapper .gform_page_footer .button.gform_button:hover {&#60;br /&#62;
border: 1px solid rgba(114,114,114,0.6);&#60;br /&#62;
background-color: #444444;&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
body .gform_wrapper .gform_page_footer .button.gform_button:active { top: 1px; }&#60;/p&#62;
&#60;p&#62;That added styling to the Submit button but not the &#34;Next&#34; or &#34;Previous&#34; buttons.&#60;/p&#62;
&#60;p&#62;Where can I add the styling so that the &#34;Next&#34; and &#34;Previous&#34; will match the submit buttons. &#60;/p&#62;
&#60;p&#62;Here is the link to the form: &#60;a href=&#34;http://dekarmedia.com/new/multi-page/&#34; rel=&#34;nofollow&#34;&#62;http://dekarmedia.com/new/multi-page/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-136517</link>
			<pubDate>Wed, 30 Jan 2013 12:58:51 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">136517@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please share a link to the page on your site where we can see this form in action.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>escius on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-133143</link>
			<pubDate>Sun, 27 Jan 2013 15:23:49 +0000</pubDate>
			<dc:creator>escius</dc:creator>
			<guid isPermaLink="false">133143@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am having the EXACT same trouble on my site, the submit button uses the span style and works great with the theme CSS, but the Multi-Page &#34;next&#34;, &#34;previous&#34;, etc.. buttons dont use the span style and as such don't work with the theme styling.&#60;/p&#62;
&#60;p&#62;Currently the only way to fix this is to edit the Gravity Forms Plugin files... is there anyway you can add the span style to these buttons as well like you did with the Submit button? or at least a workaround that wont break the plugin or theme update process?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-120873</link>
			<pubDate>Sun, 13 Jan 2013 13:22:11 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">120873@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You should not modify any of the Gravity Forms CSS.  You will copy the appropriate styles from this section, add them to the end of the stylesheet, and change the selectors to ones which will apply to Gravity Forms.    The big reason this is not working for Gravity Forms buttons is that your theme is using a span to style the button.  Gravity Forms buttons do not use a span.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Divent on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-120735</link>
			<pubDate>Sun, 13 Jan 2013 07:58:22 +0000</pubDate>
			<dc:creator>Divent</dc:creator>
			<guid isPermaLink="false">120735@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My site is developed locally at the moment.&#60;br /&#62;
I get what you mean but I'm not really sure what goes where to be honest.&#60;/p&#62;
&#60;p&#62;My theme has a shortcode function for adding buttons of different sizes and with different functions (dividers, etc) built in, so the css was quite extensive in the buttons department.&#60;/p&#62;
&#60;p&#62;I do believe the CSS below is responsible for styling &#34;regular buttons&#34;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* --- Buttons --------------------------------------------------------------------------------- */
.button {
	margin-bottom:22px;
	margin-right:0.2px; /*IE8 inline-block fix*/
	display:inline-block;
	position:relative;
	text-decoration:none !important;
	text-align:center;
	text-transform:uppercase;
	vertical-align:middle;
	-webkit-box-shadow:0 1px 2px rgba(0,0,0, 0.2);
	   -moz-box-shadow:0 1px 2px rgba(0,0,0, 0.2);
			box-shadow:0 1px 2px rgba(0,0,0, 0.2);
	zoom:1;
}

.button,
.button span  {
	-webkit-border-radius:3px;
	   -moz-border-radius:3px;
	        border-radius:3px;
}

.button &#38;gt; span {
	position:relative;
	display:inline-block;
	overflow:hidden;
	vertical-align:bottom;
	zoom:1;
}
.button &#38;gt; span:before,
.button &#38;gt; span:after {
	height:1px;
	content:&#38;quot;&#38;quot;;
    position:absolute;
    left:1px;
    right:1px;
    z-index:2;
}
.button &#38;gt; span:after {
    top:1px;
    background-image:-webkit-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.33) 50%, rgba(255,255,255, 0) 100%);
    background-image:   -moz-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.33) 50%, rgba(255,255,255, 0) 100%);
    background-image:    -ms-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.33) 50%, rgba(255,255,255, 0) 100%);
    background-image:     -o-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.33) 50%, rgba(255,255,255, 0) 100%);
    background-image:        linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.33) 50%, rgba(255,255,255, 0) 100%);
}
.button &#38;gt; span:before {
   	bottom:0;
    background-image:-webkit-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.2) 50%, rgba(255,255,255, 0) 100%);
    background-image:   -moz-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.2) 50%, rgba(255,255,255, 0) 100%);
    background-image:    -ms-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.2) 50%, rgba(255,255,255, 0) 100%);
    background-image:     -o-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.2) 50%, rgba(255,255,255, 0) 100%);
    background-image:        linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.2) 50%, rgba(255,255,255, 0) 100%);
}
.button:hover &#38;gt; span:before { background:none; }

.button &#38;gt; span &#38;gt; span { display:block; letter-spacing:1px; zoom:1; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Which part in the Gravity Forms CSS should I modify?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-120363</link>
			<pubDate>Sat, 12 Jan 2013 13:21:37 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">120363@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please post a link to the page on your site where we can see the form.&#60;/p&#62;
&#60;p&#62;Generally, what you would do, is find the class of the previous and next buttons, then copy the styles from your theme's stylesheet, and apply those to the form button elements in the Gravity Form. Submit is a common button name, but they likely did not target the previous and next buttons.  Just copy their styles for the buttons, add them to the end of the theme stylesheet, and change the selectors so it will apply to your previous and next form buttons.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Divent on "Use current themes default button CSS when using multi page forms?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-current-themes-default-button-css-when-using-multi-page-forms#post-120239</link>
			<pubDate>Sat, 12 Jan 2013 08:36:02 +0000</pubDate>
			<dc:creator>Divent</dc:creator>
			<guid isPermaLink="false">120239@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi!&#60;br /&#62;
I'm using a multi page form for the order process of domain and web hosting package solutions.&#60;br /&#62;
The form is working nicely but I'd like my themes default buttons to override the pagination buttons. The submit button inherits my themes button CSS but not the next/previous buttons?&#60;/p&#62;
&#60;p&#62;What would be the best way to do this?&#60;br /&#62;
I'm using the WP theme &#34;Flare&#34;, by the way: &#60;a href=&#34;http://themeforest.net/item/flare-responsive-business-portfolio-wp-theme/1969512&#34; rel=&#34;nofollow&#34;&#62;http://themeforest.net/item/flare-responsive-business-portfolio-wp-theme/1969512&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Divent
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
