How to remove empty value from drop-down

0
Hi all, I want to remove empty value from my drop down. Can anyone help me in it. I tried answer found in forum but that didn’t work for me. I am attaching the image please check that and and provide me the solution. Thanks
asked
1 answers
2

You can use styling to achieve this, however, in your case it is probably better to use radio buttons, which will not show empty values by default.

 

The class:

 

.class-to-put-on-input option:first-child {

    display: none;

}

answered