Hi Ron,
You can easily fix this by styling using sass / css. Add the following lines to your main.scss (or to a custom scss file if you use that):
input[type=checkbox]:before {
border: 1px solid black;
}
This will give all existing checkboxes a black outline. However you can change the thickness and color of the border any way you like. Hopefully this helps.
In case this solves your question, please mark this answer as accepted.
Hi Everyone.
I experienced the same issue with the radio buttons border.
Here is how I fixed that, after Davy gave me earlier reply:
input[type=radio]:before {
border: 1px solid black;
}
Enjoy.