Hi
I have a form that appears fine on desktop but it displays as half column on mobile.
I need it to display as 1 column on mobile. see private.
Please advise.
Thanks
Hey woogie07,
Thank you for the inquiry.
You can add this css code to adjust the width of the columns on mobile view.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #top #main .flex_column.av-b3s6-4c68ef9fc64be5c306ddbb83e1de262e {
width: 100% !important;
display: block;
clear: both;
margin: 50px 0 0 0;
}
.responsive #top #main .flex_column_table_cell.flex_column.av-k05s-f9fce12797e122f4e36413920243833b,
.responsive #top #main .flex_column_table_cell.flex_column.av-t9vy-5272f52a9f41d9430748edfd05e414db {
width: 50% !important;
display: block;
float: left;
}
}
Best regards,
Ismael