Align bottom in row or group

By: Kimberly Hargis | Asked: 08/05/2025
ForumsCategory: How-toAlign bottom in row or group
Kimberly HargisKimberly Hargis asked 5 months ago

Hi, I have a row (group) layout in my form that includes:

  • A checkbox
  • A text box (with label on the left)
  • Another checkbox

If I set the text box label to "top", the row doesn't look right but the text box is even with the checkboxes. 
If I set the label to "left", the  textbox isn't aligned vertically with the checkboxes — it sits higher. How do I align checkboxes and a text field (with a label on the left) evenly in the same row? Thank you for your time. I can't find this in the documents or get an AI to give me the right css codes. Kim

Attachments

Bobby Clapp
Staff replied 5 months ago

By design the default layout makes room for a field title, the field type itself, and then a description, all on three separate rows. The information below allows you to adjust the vertical location of the field type, but if you add a description it's probably going to look a bit crazy again.

Play around with some custom CSS. Changing the margin-top variable here (was 0 and I made it 8px) allows me to align it more "centered" horizontally across the different field types.

.frm_form_field .frm_checkbox, .frm_form_field .frm_radio {
margin-top: 8px;
margin-bottom: 0;
}

Kimberly HargisKimberly Hargis
replied 5 months ago

Thank you, never thought about doing top margin

Making the Best WordPress Plugin even better - Together

Take on bigger projects with confidence knowing you have access to an entire community of Formidable Experts and Professionals who have your back when the going gets tough. You got this!
Join the community
crossarrow-right