I created these helper classes to remove the extra default label spacing:
.checkbox-nospacing { // No label spacing on checkbox
.col-sm-9 {
margin: 0px;
width: auto;
max-width: 100%;
flex: auto;
}
}
and another one for radio selectors:
.radiobox-nospacing { // Removes default spacing on radio horizontal radio boxes
.col-sm-3 {
text-align: left;
max-width: unset;
display: inline-block;
flex: none;
width: auto;
}
}
I was able to select “No” on show label and add in a separate label however I am wondering if there is a way to still show the label by default without the extra classes.