How do I change the outline border color of the radio selection on a form?

I cannot figure out the css to target the outline color of the circle selection area for radio buttons on a yes/no question. I need to do it on one form only. The page is Contact SpineCare of NY Spine Surgeons & Physicians | New York, NY. Any help would be greatly appreciated. Thanks in advance.

If I’m not mistaken I believe that’s an image. You would need to target the class and replace the unchecked label with a different image with your colors.

This should do the trick:

.gfield_radio input[type='radio']:before {
border: 1px solid red;
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.