Hi @madeoflovely,
Seems like this ticket got missed from the queue, sorry for the delay in getting back.
I’m not able to notice any borders when I check your website. The issue with not being able to tick the 1st checkbox option is due to the site header overlapping the Quiz.
The issue is more related to your theme, and it should work fine in a default WP theme. Adding a margin to your site’s header should resolve the issue of not being able to tick the checkbox.
3. How can I limit one submission per email/person? I don’t want that button at the end of the quiz that says “Retake Quiz”
I’m afraid, there isn’t any out of the box setting regarding this at the moment.
As a workaround you could try the following CSS to remove the “Re-take Quiz” button:
#forminator-module-135 > div.forminator-quiz--result > div > div > button.forminator-result--retake {
display: none;
}
You’ll need to update the following line in the above code ie:
#forminator-module-135
With the correct quiz ID, if you your quiz ID is 123 then the CSS would be:
#forminator-module-123 > div.forminator-quiz--result > div > div > button.forminator-result--retake {
display: none;
}
You can add the CSS via the default WordPress customizer, under Appearance > Customize > Additional CSS.
However, the above CSS will only hide users from clicking the re-take quiz button. If the users refresh the page, then they would be able to re-do the quiz again.
We are working on a feature to implement the option to limit submissions in future updates. At the moment there isn’t any exact ETA but hoping soon.
Kind Regards,
Nithin