I just came across this in BootstrapBase - probably inherited from base theme...
input[type="radio"],
input[type="checkbox"] {
margin-top: -4px; // Dodgy hack, must be better way.
margin-right: 7px;
}
I'm considering changing this to...
input[type="radio"],
input[type="checkbox"] {
vertical-align: text-top;
margin-right: 7px;
}
If anyone disagrees can you comment here...
Thanks
Mary