Hi, We have a multicolumn form that works well on desktop and on mobile because of the resposive breakpoint @media 600px somewhere in formidable forms. If you have a smaller Browser window on Desktop or if you are on ipad portrait it looks very ugly. The most simple approch here would be to change that 600px to 968px. can this be done? thanks
Hi, after grep thru all plugin files (search media) i found in css/frm_grids.css the following code (with max-wide 750 and 600 )just select your pixel wide 988 in my case and put this into your custom css
@media only screen and (max-width: 988px) { .frm_grid_container.frm_no_grid_750 > div{ grid-column: span 12/span 12; } } @media only screen and (max-width: 988px) { .frm_section_heading > .frm_form_field, .frm_fields_container > .frm_submit, .frm_grid_container > .frm_form_field, .frm_fields_container > .frm_form_field{ grid-column: 1 / span 12 !important; } .frm_grid_container.frm_no_grid_600, .frm_form_field.frm_inline_container, .frm_form_field.frm_right_container, .frm_form_field.frm_left_container{ display:block; } }
Please login or Register to submit your answer