Horizontal Checkbox Settings
Section Label Setting
You can easily customize the label of input, you can change it in this line of code:
```handlebars
<label for="subcribe-title" class="inline-block ml-[5px]">Subcribe To Our Newsletters</label>
<input type="hidden" name="subcribe-title" id="subcribe-title" value="subcribe-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 Settings
You can easily customize the label of option, you can change it in this line of code:
```html
<input type="checkbox" id="subscribe" name="subscribe" value="no">
<label for="subscribe" class="inline-block ml-[5px]">Unsubscribe</label>
```
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 delete the option by customize these lines of code:
<div class="flex items-center sm:mr-[10px] sm:flex-1 max-sm:w-full">
<input type="checkbox" id="OPTION_ID" name="OPTION_NAME" value="OPTION_VALUE">
<label for="OPTION_ID" class="inline-block ml-[5px]">OPTION_LABEL</label>
</div>

Last updated