Radio Button Option Alignment

Hi there,

I am trying to alight my radio button options. Currently on my form, everything is centered which based on the length of the defined answers throws the alignment off. I need them left alligned in one, 2 or 3 columns depending on the questions in the form.

See here: Apply for a loan - Moneyline-uk: Affordable loans from £100 - £500 | Trusted Credit Lender Titles like mr,miss, mrs are centered, and need to be aligned to the left.

Thank you!

Hi Claire. There is some custom CSS being added for page 731 (in fact, it’s added twice) specifically, which is making the radio buttons aligned left. It’s this CSS:

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio {
    margin-left: auto;
    margin-right: auto;
    width: 16em;
}

If you remove the margin-left and margin-right (and find all instances of that and remove them all) the radio button field will look like this:

Let us know if you have any other questions.