<?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: Next / Previous buttons not picking up style (CSS)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css</link>
		<description>Gravity Support Forums Topic: Next / Previous buttons not picking up style (CSS)</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:20:59 +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/next-previous-buttons-not-picking-up-style-css" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Next / Previous buttons not picking up style (CSS)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css#post-50685</link>
			<pubDate>Mon, 27 Feb 2012 12:43:39 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">50685@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Right on, right on! Glad to help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>teajayo on "Next / Previous buttons not picking up style (CSS)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css#post-50683</link>
			<pubDate>Mon, 27 Feb 2012 12:30:11 +0000</pubDate>
			<dc:creator>teajayo</dc:creator>
			<guid isPermaLink="false">50683@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Rob.  U DA MAN!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Next / Previous buttons not picking up style (CSS)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css#post-50679</link>
			<pubDate>Mon, 27 Feb 2012 12:19:17 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">50679@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_next_button:hover, .gform_previous_button:hover {background:#852c3b !important;}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>teajayo on "Next / Previous buttons not picking up style (CSS)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css#post-50671</link>
			<pubDate>Mon, 27 Feb 2012 11:58:43 +0000</pubDate>
			<dc:creator>teajayo</dc:creator>
			<guid isPermaLink="false">50671@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Rob....&#60;/p&#62;
&#60;p&#62;I tired that and the color is correct but not doing the border radius or the hover ?? I added this to style.css&#60;/p&#62;
&#60;p&#62;.gform_next_button, .gform_previous_button {&#60;br /&#62;
height: 30px;&#60;br /&#62;
padding: 0 15px !important;&#60;br /&#62;
background: black !important;&#60;br /&#62;
color: white !important;&#60;br /&#62;
cursor: pointer;&#60;br /&#62;
overflow: visible;&#60;br /&#62;
border: 0;&#60;br /&#62;
-webkit-border-radius: 5px;&#60;br /&#62;
-moz-border-radius: 5px;&#60;br /&#62;
border-radius: 5px;&#60;br /&#62;
margin-top: 10px !important;}&#60;br /&#62;
.gform_next_button, .gform_previous_button :hover {background:#852c3b;}&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.sullivanglass.com/auto-glass-repair-installation-quote&#34; rel=&#34;nofollow&#34;&#62;http://www.sullivanglass.com/auto-glass-repair-installation-quote&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Next / Previous buttons not picking up style (CSS)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css#post-50668</link>
			<pubDate>Mon, 27 Feb 2012 11:49:57 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">50668@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Tom - this is what is causing it, you have this selector here:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.post form input {
width: auto;
border: 1px solid #CCC;
border-radius: 3px 3px 3px 3px;
color: #222;
padding: 3px 6px 4px;
background: #F9F9F9;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Try placing this into your theme's css (we'll override that with this):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_next_button, .gform_previous_button {
height: 30px;
padding: 0 15px !important;
background: black !important;
color: white !important;
cursor: pointer;
overflow: visible;
border: 0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top: 10px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, you'll def want to not update the plugin's css file for updating purposes, so you don't lose your customizations.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>teajayo on "Next / Previous buttons not picking up style (CSS)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/next-previous-buttons-not-picking-up-style-css#post-50663</link>
			<pubDate>Mon, 27 Feb 2012 11:30:49 +0000</pubDate>
			<dc:creator>teajayo</dc:creator>
			<guid isPermaLink="false">50663@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;HI.  Something's up with the CSS for the buttons conflicting with the input fields here&#38;gt;&#60;br /&#62;
&#60;a href=&#34;http://www.sullivanglass.com/auto-glass-repair-installation-quote&#34; rel=&#34;nofollow&#34;&#62;http://www.sullivanglass.com/auto-glass-repair-installation-quote&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It's a two page form and the 'next' 'previous' buttons are using the style of the input boxes and not the 'Submit' button.  &#60;/p&#62;
&#60;p&#62;To view the submit button without filling out the first page of the form... check any of the other forms on the site &#38;gt; like :: &#60;a href=&#34;http://www.sullivanglass.com/window-repair-quote&#34; rel=&#34;nofollow&#34;&#62;http://www.sullivanglass.com/window-repair-quote&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have tried everything.  Even editing the gforms css.  Just keeps reading and using the input css.  Any ideas are greatly appreciated.&#60;/p&#62;
&#60;p&#62;-Tom
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
