You can hide the input using display: none; and add extra element which will take over the function of your checkbox. Than you can style that element to look like checkbox button you need.
Example:
HTML:
Code:
<span class="list-item">
<label>
<input type="checkbox" name="name" value="YourValueName">
<span class="list-item-label">YourValueName</span>
Leave a comment: