<?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: Change the spinner image &#38; show it above a semi-transparent layer</title>
		<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer</link>
		<description>Gravity Support Forums Topic: Change the spinner image &amp; show it above a semi-transparent layer</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 09:41:10 +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/change-the-spinner-image-show-it-above-a-semi-transparent-layer" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Change the spinner image &#38; show it above a semi-transparent layer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer#post-74158</link>
			<pubDate>Thu, 06 Sep 2012 08:12:39 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">74158@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the update @leac.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lea Cohen on "Change the spinner image &#38; show it above a semi-transparent layer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer#post-74137</link>
			<pubDate>Thu, 06 Sep 2012 05:13:22 +0000</pubDate>
			<dc:creator>Lea Cohen</dc:creator>
			<guid isPermaLink="false">74137@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Again thank you very much Josh!&#60;/p&#62;
&#60;p&#62;Actually, I didn't need it in a fixed position, because it doesn't need to cover the whole screen (sorry that the image was misleading), but only the form.&#60;br /&#62;
In order to do that, I changed it to position absolute, but the problem was that my &#60;code&#62;.gform_footer&#60;/code&#62; has position relative for other reasons, so this couldn't work. But otherwise, it was an excellent solution, and I learned how to change the image if I ever need it, so I really appreciate your help :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Josh on "Change the spinner image &#38; show it above a semi-transparent layer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer#post-66996</link>
			<pubDate>Thu, 19 Jul 2012 07:55:06 +0000</pubDate>
			<dc:creator>Josh</dc:creator>
			<guid isPermaLink="false">66996@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK, if you put this in your theme functions...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_ajax_spinner_url&#38;quot;, &#38;quot;spinner_url&#38;quot;, 10, 2);
function spinner_url($image_src, $form){
    return  get_bloginfo(&#38;#39;template_directory&#38;#39;) . &#38;#39;/images/blank.gif&#38;#39; ; // relative to you theme images folder
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or if it specifically for form ID 6, add the ID number after &#60;code&#62;gform_ajax_spinner_url&#60;/code&#62; like this...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_ajax_spinner_url_6&#38;quot;, &#38;quot;spinner_url&#38;quot;, 10, 2);
function spinner_url($image_src, $form){
    return  get_bloginfo(&#38;#39;template_directory&#38;#39;) . &#38;#39;/images/blank.gif&#38;#39; ;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And then if you use my original css in your style.css ( in my example below I have specified my class to form ID 6).&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#gform_wrapper_6 img.gform_ajax_spinner {
    position: fixed !important;
    z-index: 999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block !important;
    overflow: hidden  !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0); /* fall back */
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url(&#38;#39;images/preloading.gif&#38;#39;);  /* path to your new spinner */
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: center center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Give it ago but otherwise see what the experts can suggest.&#60;/p&#62;
&#60;p&#62;See documentation here.&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_ajax_spinner_url&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_ajax_spinner_url&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lea Cohen on "Change the spinner image &#38; show it above a semi-transparent layer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer#post-66993</link>
			<pubDate>Thu, 19 Jul 2012 07:00:56 +0000</pubDate>
			<dc:creator>Lea Cohen</dc:creator>
			<guid isPermaLink="false">66993@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks, Josh, but you're right that changing the image in the gravity forms plugin folder is what seems problematic to me. I want to know if there is a way to tell the form to use an image from a different folder.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Josh on "Change the spinner image &#38; show it above a semi-transparent layer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer#post-66992</link>
			<pubDate>Thu, 19 Jul 2012 06:12:10 +0000</pubDate>
			<dc:creator>Josh</dc:creator>
			<guid isPermaLink="false">66992@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I don't know if this helps you...&#60;/p&#62;
&#60;p&#62;You can put this in your style.css with the relavant path to your new spinner.gif&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;img.gform_ajax_spinner {
	position: fixed !important;
	z-index: 999999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block !important;
	overflow: hidden  !important;
	width: 100% !important;
	height: 100% !important;
	background-color: rgba(0, 0, 0); /* fall back */
	background-color: rgba(0, 0, 0, 0.7);
	background-image: url(&#38;#39;images/preloading.gif&#38;#39;);  /* path to your new spinner */
	background-repeat: no-repeat;
	background-size: 60px 60px;
	background-position: center center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And then you have to replace the spinner.gif with a transparent 1px x 1px gif - but replace spinner.gif with the same file name.&#60;/p&#62;
&#60;p&#62;This is located in your images folder in the gravity form plugins folder.&#60;/p&#62;
&#60;p&#62;I have not tested it in all browsers and I'm not sure if it recommended to change the current spinner.gif incase it's used in the admin or else where. Plus if you do an update you will have to remember to replace it again with a transparent gif.&#60;/p&#62;
&#60;p&#62;I'm sure someone could write some jQuery to edit the attribute of the spinner img to a blank.gif in your theme images folder.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lea Cohen on "Change the spinner image &#38; show it above a semi-transparent layer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-the-spinner-image-show-it-above-a-semi-transparent-layer#post-66989</link>
			<pubDate>Thu, 19 Jul 2012 04:42:42 +0000</pubDate>
			<dc:creator>Lea Cohen</dc:creator>
			<guid isPermaLink="false">66989@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to replace the spinner image with out own custom image?&#60;/p&#62;
&#60;p&#62;And also - is it possible to make it appear as if its above a semi-transparent layer on the form?&#60;/p&#62;
&#60;p&#62;This is an &#60;a href=&#34;http://dev.linux.ort.org.il/singa/wp-content/themes/singalovsky/images/1.jpg&#34; rel=&#34;nofollow&#34;&#62;image&#60;/a&#62; of what I'm trying to achieve
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
