<?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: cancel button</title>
		<link>https://legacy.forums.gravityhelp.com/topic/cancel-button</link>
		<description>Gravity Support Forums Topic: cancel button</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Apr 2026 09:25: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/cancel-button" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-38105</link>
			<pubDate>Mon, 17 Oct 2011 16:59:51 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">38105@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My pleasure. Glad I could help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsiemins on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-38087</link>
			<pubDate>Mon, 17 Oct 2011 15:21:25 +0000</pubDate>
			<dc:creator>jsiemins</dc:creator>
			<guid isPermaLink="false">38087@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kavin,&#60;/p&#62;
&#60;p&#62;Exactly, thanks a lot!&#60;/p&#62;
&#60;p&#62;Have a nice day,&#60;br /&#62;
Jarek
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-38083</link>
			<pubDate>Mon, 17 Oct 2011 14:48:29 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">38083@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I tested and tried this.. removed the rule for the cancel button you have in place, then used this instead.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper li#field_1_8 input.cancelbutton {
    border: none;
    margin-top: 45px;
    position: absolute;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/osiyfa&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/osiyfa&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm guessing that's what you were trying to accomplish.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsiemins on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-38082</link>
			<pubDate>Mon, 17 Oct 2011 14:12:21 +0000</pubDate>
			<dc:creator>jsiemins</dc:creator>
			<guid isPermaLink="false">38082@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Kevin!&#60;/p&#62;
&#60;p&#62;Than you for your advice!&#60;br /&#62;
To explain, it's not shopping card, what I'm doing, I'm kindly asking for donation.&#60;/p&#62;
&#60;p&#62;There is only one problem, I'm using image buttons and I ca't put them side bu side by using css.&#60;br /&#62;
Please have look here: &#60;a href=&#34;http://www.fundacjadziedzic.pl/inna-dotacja/&#34; rel=&#34;nofollow&#34;&#62;http://www.fundacjadziedzic.pl/inna-dotacja/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is it possible to put is side by side?&#60;/p&#62;
&#60;p&#62;best regards,&#60;br /&#62;
Jarek
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-37948</link>
			<pubDate>Fri, 14 Oct 2011 16:10:08 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">37948@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I disagree &#34;every such form should have cancel button&#34;. Yes, perhaps full e-commerce applications have &#34;cancel&#34; and &#34;continue shopping&#34; buttons/links but Gravity Forms isn't intended to work like a full shopping cart.&#60;/p&#62;
&#60;p&#62;If all you want to do is return someone to the previous page, you can use an HTML field to create a button, link it to wherever you want it to go and then use CSS to position it wherever you like. It should be relatively easy to achieve. An example is below.&#60;/p&#62;
&#60;p&#62;Added this to a HTML block ( at the very end of my form ) and checked the option to &#34;disable default margins&#34;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;input type=&#38;quot;button&#38;quot; value=&#38;quot;Cancel and Return to Google&#38;quot; class=&#38;quot;cancelbutton button&#38;quot; onClick=&#38;quot;window.location.href=&#38;#39;http://www.google.com&#38;#39;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then I quickly added a custom CSS rule to position the button.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
input.cancelbutton {
	position:relative;
	top:54px;
	left:75px;
	font-size:1em
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and that's all there is to it.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://screencast.com/t/xf6EUNoSXKF&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/xf6EUNoSXKF&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsiemins on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-37947</link>
			<pubDate>Fri, 14 Oct 2011 16:06:25 +0000</pubDate>
			<dc:creator>jsiemins</dc:creator>
			<guid isPermaLink="false">37947@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;let's assume that you go to purchase something.&#60;br /&#62;
You go to the purchase form and change your mind and want to check something on the site.&#60;/p&#62;
&#60;p&#62;If form has only OK/Submit/Purchase button, everybody will feel a little confused and probably will close browsing tab.&#60;/p&#62;
&#60;p&#62;Each and every such form should have cancel button, which will return customer/donor to other page on the site.&#60;/p&#62;
&#60;p&#62;It's what I want to achieve.&#60;/p&#62;
&#60;p&#62;Have a nice weekend,&#60;br /&#62;
Jarek
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-37881</link>
			<pubDate>Thu, 13 Oct 2011 20:04:45 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">37881@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What would the cancel button do?  Clear the form, then what?  I'm curious what functionality you're looking for so we can help you with it.  Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsiemins on "cancel button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cancel-button#post-37866</link>
			<pubDate>Thu, 13 Oct 2011 17:14:46 +0000</pubDate>
			<dc:creator>jsiemins</dc:creator>
			<guid isPermaLink="false">37866@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi guys!&#60;/p&#62;
&#60;p&#62;I'm really confused, each and every purchase/donation form in the world needs two buttons OK and CANCEL.&#60;/p&#62;
&#60;p&#62;I found a lots of really advanced things here but no idea how to add CANCEL button.&#60;/p&#62;
&#60;p&#62;Any idea how to easily add custom buttons?&#60;/p&#62;
&#60;p&#62;brgs,&#60;br /&#62;
Jarek
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
