PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

How can I remove ajax spinner?

  1. Fika
    Member

    I see I can change the image here

    http://www.gravityhelp.com/documentation/page/Gform_ajax_spinner_url

    but I am sometimes getting 2 spinners on some pages with multiple buttons (prev / next) So I just want to remove it altogether.

    Thanks

    Posted 11 years ago on Thursday November 8, 2012 | Permalink
  2. David Peralty

    Can you link to your page? Usually if you see two spinners, it means there is a JS problem that should be addressed.

    Posted 11 years ago on Thursday November 8, 2012 | Permalink
  3. Fika
    Member

    Hi Dave, I am still building it out locally and not live yet. I can tell you I am using page breaks and images as buttons. Double spinners happen on page 2. As soon as I finish the form up I can post the link for you.

    In the mean time is there a way to get rid of the spinner anyway. I probably do not want it there even if above is fixed

    Posted 11 years ago on Thursday November 8, 2012 | Permalink
  4. You can hide the display of the spinner gif with CSS:

    [css]
    body img.gform_ajax_spinner {
        display: none!important;
    }
    Posted 11 years ago on Friday November 9, 2012 | Permalink