The required text for check box displays the text in red font over the first checkbox and makes it difficult for user to figure out what needs to be selected. Is it possible to display check box required text after question title, the way it is done for dropdown box? That would solve the issue. See this snapshot for more details: http://lfs-server1.s3.amazonaws.com/wp-content/uploads/2013/06/Check_Box_Error_Handling.jpg
You can move things around a bit with some CSS. You might need to adjust the widths to make it work with your WordPress theme, but this will get you most of the way there:
/* make the checkbox label wider so it doesn't wrap */
.options-list-check label {
width: 300px;
}
/* float the error message right and make sure it's narrower than its parent */
.options-list-check label.error {
float: right;
max-width: 200px;
}
The support post ‘Required Text for Check Box Type of Queston’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.