Hi there! Would like some help on how to troubleshoot the ajax loader for my Contact Form 7 installed on this page: https://graar.ph/feedback/.
I was able to have the loader show up using the following code:
form.submitting .wpcf7-spinner {
visibility: visible;
}.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d;
opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
top: 8px;
right: 14px;
position: relative;
}.wpcf7-spinner::before {
content: ‘’;
position: absolute;
background-color: #fbfbfc;
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;
}
However, the spinning animation doesn’t seem to work. Hope someone can help me out with this!