Hi Andrew,
I’ve responded to your questions below (including #1, which I may be able to still assist with a bit):
1. When the user hits submit I do not get an email come through.
It sounds like you found the admin email being used (Email Address found under Settings > General in left WordPress menu).
However if you still see any email delivery issues, or would simply like to take a good proactive measure to prevent future issues, I’d recommend installing an SMTP plugin. We have lots more details on why this is useful and suggested options in our tutorial on fixing email delivery issues.
2. With the notifications it seems to only offer “Success”.
I apologize, but I don’t understand what you’re looking for. Could you please share more details on what you’d like to see here?
3. Is it possible to make all the form fields the same width?
Absolutely. To change a field’s size, you can open the form builder and click the field within the preview area. This will open its Field Option panel, and from there you’ll need to open Advanced Options. In this section, you’ll find a Field Size dropdown.
For almost all fields, this controls the width (ie “Large” is 100% width). The only exception is the Paragraph Text field — for this field, the Field Size option controls its height (it will always be 100% width).
4. If I input an invalid email address there is a message that shows up in red. I am colour blind and this combination is burning my eyes. Is there any suitable CSS styling we can apply here to display it with an alternative style?
Sure! To change these styles, you’ll just need a little custom CSS. In case it helps, you can find all of the CSS styles we apply to validation messages in this tutorial.
Here’s the CSS you’d need to change the color of the validation text:
div.wpforms-container-full .wpforms-form label.wpforms-error {
color: #990000;
}
The current hex value, #990000
represents our default red color. However, you can chance this to any color you’d like. In case it helps, here’s a site I like to quickly find the hex values for different colors.
Also, here’s a guide from WPBeginner on how to add custom CSS snippets like this to your site.
5. Is it possible to extend the “robot” recatchpa to be more than just a check box? On other computers I find that it then displays a popup window of images where you have to pick three that match a criteria.
The checkbox you see and the image questions you’re describing are actually all the same thing. Google’s reCAPTCHA is super smart, and will use a specific set of criteria to determine whether each user has to answer those image questions (or if they can simply check the box). If you test this out on a couple of different browsers/devices, you’ll likely get prompted with the images you’re expecting.
As an example, here’s a screenshot of the reCAPTCHA in my test site form when I view it in Chrome’s incognito mode.
I hope this helps! ??