Vertical Checkbox Settings
Section Label Setting
You can easily customize the label of section, you can change it in this line of code:
```html
<label for="gender-title" class="inline-block ml-[5px]">Gender</label>
<input type="hidden" name="gender-title" id="gender-title" value="gender-title">
```
Make sure that the "FOR" value of the label tag and the "ID" value of the input tag have the same value

Option Label Setting
You can easily customize the label of option, you can change it in this line of code:
```html
<input type="radio" id="subscribe" name="gender" value="male" checked>
<label for="gender">Male</label><br>
```
Make sure that the "FOR" value of the label tag and the "ID" value of the input tag have the same value

Add or delete the option
You can add or customize the option by customize these line of code:
```handlebars
<input type="radio" id="OPTION_ID" name="fav_language" value="OPTION_VALUE">
<label for="OPTION_ID">OPTION LABEL</label><br>
```

Last updated