Im trying to custom design checkbox buttons so they don't look like the typical checkbox button. Im trying to achieve the following:
(note the check and cross marks are images.)
Ive been able to achieve this so far:
But I can't seems get rid of the small white checkbox where the tick appears. I am trying to change the css of the checkbox button on selection. For example is yes is checked the border turn to green otherwise stay grey.
Is possible to do?
Edit:
.btn-primary {
background-color: #f6f9fc;
border: 1px solid Rgba(61, 70, 77, 0.1);
font-size: 11px;
color: #3d464d;
width: 200px;
height: 200px;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<label class="btn btn-primary">
<input type="checkbox" value="yes">yes
</label>
<label class="btn btn-primary">
<input type="checkbox" value="no">no
</label>

