Contact form 7 (WPCF7) Spinner

The spinner for Contact Form 7 is not showing.
This issue is very old, I think it’s a shame it’s still an issue.

Some past posts about this issue:




this solutions does not work anymore.

Now I use this code from @striata from oct 21!

@keyframes spin {
	from { transform: rotate(0deg);	}
	to { transform: rotate(360deg);	}
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

form.submitting .wpcf7-submit {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

Hi @llribas,

The mentioned issue has been already fixed in the upcoming release. Till the update comes, please use the code that is working.

Thanks

Your theme and Cornerstone are great, but you can’t spend two years in solving and issue like this.
thank you

Hi @llribas,

We are really sorry for that, but unfortunately, you have to wait for the upcoming release with the fix.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.