• I am having an issue with the form I have created. It does fine for the upper portion of the form, but when you hit the tab button to go to the next field from the “Message” field, it is skipping four radio button questions. I have tried rebuilding the form, but it didn’t fix the issue either.

    Thanks for the help in advance!
    Craig

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @outofboundsdad

    I think the issue is that the radio and checkboxes inside of Go are actually images, and the real input fields are hidden. We’ve discussed this internally, and it’s something that we are working on resolving as it does not adhere to accessibility standards.

    This should be resolved in a future update.

    You should be able to do something along these lines, to re-enable to default input fields, which would allow for tabbing to them.

    
    .coblocks-field .coblocks--inline .coblocks-radio-label {
       padding-left: 0;
    }
    
    label.coblocks-radio-label:before {
       display: none;
    }
    

    Although, now it looks like tabbing just tabs between each ‘Yes’ radio input, so that’s something else we will have to investigate.

Viewing 1 replies (of 1 total)
  • The topic ‘Is there a method to set field order in forms’ is closed to new replies.