Title: Spinning wheel + message
Last modified: April 7, 2023

---

# Spinning wheel + message

 *  Resolved [vkeves](https://wordpress.org/support/users/vkeves/)
 * (@vkeves)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/spinning-wheel-message/)
 * Hello,
 * Is there a way to add a message next to the spinning wheel?
 * Something like “Please wait, we are processing your request.”
 * Sometimes it can take a few seconds for a message to be submitted and, despite
   the spinning wheel spinning, users still tend to click Submit multiple times.
 * I don’t want to replace the spinning wheel with the message, just add a message
   next to it. Is it possible?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Takayuki Miyoshi](https://wordpress.org/support/users/takayukister/)
 * (@takayukister)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/spinning-wheel-message/#post-16637534)
 * During a submission, the `form` element has the `submitting` class. Utilizing
   this, you can make a paragraph that is visible only in submission.
 * HTML:
 *     ```wp-block-code
       <p class="only-visible-in-submission"> Please wait, we are processing your request. </p>
       ```
   
 * CSS:
 *     ```wp-block-code
       .only-visible-in-submission {
         visibility: hidden;
       }
   
       form.submitting .only-visible-in-submission {
         visibility: visible;
       }
       ```
   
 * The [spinner icon](https://github.com/takayukister/contact-form-7/blob/v5.7.5.1/includes/css/styles.css#L76)
   uses the same technique.
 *  Thread Starter [vkeves](https://wordpress.org/support/users/vkeves/)
 * (@vkeves)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/spinning-wheel-message/#post-16637782)
 * That’s great, thank you!
    -  This reply was modified 3 years, 3 months ago by [vkeves](https://wordpress.org/support/users/vkeves/).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Spinning wheel + message’ is closed to new replies.

 * ![](https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255)
 * [Contact Form 7](https://wordpress.org/plugins/contact-form-7/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contact-form-7/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contact-form-7/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-form-7/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-form-7/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-form-7/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [vkeves](https://wordpress.org/support/users/vkeves/)
 * Last activity: [3 years, 3 months ago](https://wordpress.org/support/topic/spinning-wheel-message/#post-16637782)
 * Status: resolved