How do I remove the N/A button of Pass/Fail fields?

Sometimes N/A is not an acceptable answer. Make that clear to operators by removing the N/A option in Weever's Pass/Fail field.

NO NA 

Easily hide the N/A option on Weever's Pass/Fail field by following these simple steps:

STEP 1: 

Edit the form you want to update in Form Builder

STEP 2: 

Add an Info Box field to your form 

STEP 3: 

Tap the HTML button and paste this code in the editor: 

<style> .wx-formbuilder-element.pass-fail .wx-radio-inputs-as-buttons > div:nth-child(3) { display: none !important; } .wx-formbuilder-element.pass-fail .wx-radio-inputs-as-buttons > div:nth-child(2) { border-right: none !important; border-left: 1px solid #ccc !important; /* keep thin separator between Pass/Fail */ border-radius: 0 4px 4px 0 !important; /* restore rounded corner on far right */ } </style> 

It should look like this: 

And that it!

Now the N/A option of the Pass/Fail field will be removed from the form. The Info Box will be invisible to your end users

Note: This will remove the N/A option from ALL Pass/Fail fields in the form.