CMS Development

sarahg1
Participant

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

The mobile version of this page (the form that's on it) has the check boxes and radio buttons aligned on top of each category instead of next to them. Wondering if anyone knows how to align them to the left of each option to mimic the desktop version of this form? See the page here: https://www.eojohnson.com/non-sales-lead-contact-form

0 Upvotes
1 Accepted solution
Mike_Eastwood
Solution
Key Advisor | Gold Partner
Key Advisor | Gold Partner

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

Apologies for the delayed reaction @sarahg1 

 

Here's a snippet of CSS that should fix it:

@media (max-width: 650px) {
    .cst-bdy-cnt-grp .page-center.content-wrapper .hs-service-r1-flexi form .hs-form-checkbox-display .hs-input {
        margin: 8px 5px 0;
        width: auto !important;
    }
}

You can add this code snippet to your page or your global CSS (if you have other forms).

 

Please let me know if you want help with this.

Mike

View solution in original post

0 Upvotes
5 Replies 5
sarahg1
Participant

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

Hi @Mike_Eastwood

 

Looks like you may have solved something similar in a previous post, but that solution isn't working for me. Any thoughts on this one?

 

Thanks

0 Upvotes
Mike_Eastwood
Solution
Key Advisor | Gold Partner
Key Advisor | Gold Partner

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

Apologies for the delayed reaction @sarahg1 

 

Here's a snippet of CSS that should fix it:

@media (max-width: 650px) {
    .cst-bdy-cnt-grp .page-center.content-wrapper .hs-service-r1-flexi form .hs-form-checkbox-display .hs-input {
        margin: 8px 5px 0;
        width: auto !important;
    }
}

You can add this code snippet to your page or your global CSS (if you have other forms).

 

Please let me know if you want help with this.

Mike

0 Upvotes
sarahg1
Participant

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

Thank you, @Mike_Eastwood!! It worked perfectly. Is there a similar snippet we could use to apply the same affect to the radio button question near the bottom of the form?

0 Upvotes
Mike_Eastwood
Key Advisor | Gold Partner
Key Advisor | Gold Partner

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

Hi Sarah, looks like you worked it out!

 

Nice work

Mike

0 Upvotes
sarahg1
Participant

How do I make multi-select and radio button questions mobile-friendly in forms?

SOLVE

Thanks for your help!!

0 Upvotes