My form lost mobile responsiveness | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

My form lost mobile responsiveness

I used #id{column-count: 3} for a checkbox option list in a form. Now, the form doesn't shrink to 1 column when viewed on mobile. Anyone know how to fix this?

16th Apr 2018, 7:34 AM
Tanmoy Dewanjee
Tanmoy Dewanjee - avatar
7 Answers
+ 1
post the code please.
16th Apr 2018, 7:39 AM
Akib
Akib - avatar
0
I am using a form service called Formstack. Link to the form - https://learningCurve.formstack.com/forms/list_of_banks The extra code that I used: #fsCell63406438{ color: red; } .fsBody .fsForm input.fsSubmitButton { background-color: #d73a31 !important; border-radius: 10px !important; -webkit-column-span: all !important; width: 100%; } .fsBody .fsForm .fsFieldCell .fieldset-content{ column-count:3; } .fsBody .fsForm{ margin: 20px auto 20px auto; } I would really appreciate if you could help me with this. Thanks in advance.
16th Apr 2018, 7:47 AM
Tanmoy Dewanjee
Tanmoy Dewanjee - avatar
0
why not use @media in css for mobile responsiveness
16th Apr 2018, 7:48 AM
Dominique Abou Samah
Dominique Abou Samah - avatar
0
Here is the link to the form - https://learningcurve.formstack.com/forms/list_of_banks And here is the code I injected: #fsCell63406438{ color: red; } .fsBody .fsForm input.fsSubmitButton { background-color: #d73a31 !important; border-radius: 10px !important; -webkit-column-span: all !important; width: 100%; } .fsBody .fsForm .fsFieldCell .fieldset-content{ column-count:3; } .fsBody .fsForm{ margin: 20px auto 20px auto; } Would you mind taking a look at this?
16th Apr 2018, 7:51 AM
Tanmoy Dewanjee
Tanmoy Dewanjee - avatar
0
I am gonna look at this. Wait a bit. You said you used id for column-count: 3 but all i see is class. Where is it?
16th Apr 2018, 8:55 AM
Akib
Akib - avatar
0
Oh! Sorry. I forgot that I'd changed it afterwards. Now, the given code has been applied. No id.
16th Apr 2018, 9:10 AM
Tanmoy Dewanjee
Tanmoy Dewanjee - avatar
0
I can provide the previous version of the code if you need which contained id.
16th Apr 2018, 9:11 AM
Tanmoy Dewanjee
Tanmoy Dewanjee - avatar