Thanks for your help. The url is alex-fitness.co.uk/free-three-day-pass-hidden
Is there any way to change the text that replaces the form in that case? It currently shows up with some Google Forms text (Your response has been recorded. This form was created using Google Forms. Create your own Google Forms)
Whilst you’re there – I don’t suppose I could be really cheeky and ask if you know what I’d need to do css wise to get the Submit button to centralise? It’s currently aligned left and I’ve run out of ideas 🙁
Thanks so much for your speedy reply!
I am about to walk out the door, I’ll look at your form in detail a bit later for the CSS stuff.
The question about hiding the “Created with Google Forms” comes up quite a bit – if you go back through the forum you should be able to find the answer. There are specific CSS classes you need to set to “display: none” to hide that information. I’d be surprised if you had to go back more than 2-3 pages.
Thanks Mike. I managed to remove the form and replace the text using:
.ss-resp-card {
visibility:hidden;
}
.ss-resp-card:after {
visibility: visible;
content: 'Thanks for your submission!';
}
Do let me know about the button / CSS!
Thanks again
Hey Mike.
Did you manage to take a look at:
– The error messages when fields are incorrectly filled in is currently on the same line as the field itself – how can I get it to show underneath?
– How I can centre the Submit button?
Any help would be really appreciated!
Thanks again
Sorry for the delayed response, been out of town for a family wedding and didn’t take my computer with me.
To center the submit button, do this:
div.ss-item table {
margin-left: auto;
margin-right: auto;
}
To show the error messages under the text entry boxes do this:
label.error-message {
color: red;
display: block;
}