How to make Podio form mobile responsive?
Hi,
I've created some webforms using Podio and embedded in onto my website. It looks good on laptop and desktop, but I checked it on my mobile and all the forms aren't responsive.
This is the CSS code I'm using but seems like this thing doesn't work
--------------------------------------------------------------------------------------
div.container {
width: 100% !important;
}
form#webform.webforms {
width: 100% !important;
}
--------------------------------------------------------------------------------------
Thanks
-
Official comment
You can also add the rule:
.webforms { width: auto !important; }
in the embed code, then the webform is gonna be responsive on mobile :)//Sara - Podio
Comment actions -
Are you sure this is a Podio issue and not html/css? Maybe create a fiddle, https://jsfiddle.net/ and ask on stack overflow?
-
I'm not so sure about that, but my CSS/ HTML is just pretty simple and all. Here it is:
div.container {
width: 100% !important;
}
form#webform.webforms {
width: 100% !important;
}
body {
color: #002D62;
font-family: "Helvetica";
font-size: 16px;
background-color: #fff;
}
.container {
background-color: #fff;
width: 100%;
}
.btn-primary {
background-color: #B50938;
border-color: #B50938;
color: #fff;
width: 100%;
}
.input-group-addon {
background-color: #fff;
color: #fff;
}
a:hover {
color: #002D62;
}
a:link {
color: #002D62;
}
.btn-primary:hover {
background-color: #002D62;
border-color: #002D62;
color: #fff;
}
.webforms .rdtPicker {
background: #fff none repeat scroll 0 0;
}
.webforms__label {
font-family: "Helvetica";
font-size: 16px;
}
.help-block {
color: #768594;
} -
Yeah @Sara Høeg, that doesn't work. It's been the response for a while that the Podio team doesn't think this is an issue. If you could get this working on our workspace it would be great. As we have issues with the Web Form constantly because it isn't mobile friendly and responsive.
-
Hi @Brock Taffe, let me know in a private support ticket and we will be happy to look into your specific form.
/Sara - Podio
-
This is the css code I use to make my webform mobile responsive:
div.container {
width: 100% !important;
}
form#webform.webforms {
width: 100% !important;
}
#webforms__fields-container {
max-width: 500px !important;
margin: 0 auto;
}
#webform.webforms button {
display: block;
margin: 0 auto;
}
Please sign in to leave a comment.
Comments
11 comments