Checkbox label CSS - multi-line label drops below checkbox [RESOLVED]

Some of the checkboxes on this form have labels with multiple lines of text : National Night Out Giveaway - Southside Behavioral Health

(On desktop, it’s the last item on the form; on mobile, it also happens on the first choice of the third item - Which giveaway are you entering?)

I’m sure the fix is simple, but I can’t figure it out.

Grateful for any help!

Checking your site I see you have custom CSS added for the labels of your fields, for example for field 6:

#label_18_6_1 {
  font-size: 25px;
  line-height: 45px;
  margin-left: 10px;
}

The margin-left property is causing the issue. You will want to find your custom CSS and remove the margin-left.

@sacom

Thanks so much!!