The label is cancelling out the pointer, so make sure your CSS has cursor: pointer;
for both the a and the label:
a,
a label {
cursor: pointer;
}
Or better yet, remove the label! It’s not valid to have a label inside an anchor.
The label is cancelling out the pointer, so make sure your CSS has cursor: pointer;
for both the a and the label:
a,
a label {
cursor: pointer;
}
Or better yet, remove the label! It’s not valid to have a label inside an anchor.