Hello,
Thank You so much for the Kind Words! :)
For better error message management, please ensure that the Inputs are added within the .form-group DIV. Example:
<div class="form-group">
<div class="switch">
<input id="template-contactform-default-switch" name="template-contactform-default-switch" class="switch-toggle switch-toggle-round required" type="checkbox"> <!-- required -->
<label for="template-contactform-default-switch"></label>
</div>
</div>
Then simply use the following code:
.switch + label.error {
display: block !important;
}
.switch input[type="checkbox"].error + label {
border: 1px solid red;
}
This will definitely work fine. You can simply choose to use the CSS Block that works best for you. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.