CMS Development

sarahg1
参加者

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

解決

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 いいね!
1件の承認済みベストアンサー
Mike_Eastwood
解決策
キーアドバイザー | Gold Partner
キーアドバイザー | Gold Partner

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

解決

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 いいね!
5件の返信
sarahg1
参加者

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

解決

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 いいね!
Mike_Eastwood
解決策
キーアドバイザー | Gold Partner
キーアドバイザー | Gold Partner

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

解決

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 いいね!
sarahg1
参加者

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

解決

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 いいね!
Mike_Eastwood
キーアドバイザー | Gold Partner
キーアドバイザー | Gold Partner

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

解決

Hi Sarah, looks like you worked it out!

 

Nice work

Mike

0 いいね!
sarahg1
参加者

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

解決

Thanks for your help!!

0 いいね!