Hi @longqdo,
At initial look, I guess it could be something related to the theme. I would recommend you contact your theme author regarding this since the responsiveness of the form is good but it is the container that seems to overflow to the left. Please contact your theme author regarding this.
Also, share the URL of the page where you have used the form and we will have a look from our side too. We will see if we can offer help.
Regards!
Hi @sharmadpk03,
we had the same problem. I not really theme related. 😉
Mobile site with Problem: https://drive.google.com/file/d/1PuT26uq7E-Z1zX1nWbETWIHbfxy-rRRR/view
CSS-Code which do the Problem: https://drive.google.com/file/d/180_IucDvX_wyGp57KuIPJfYH3Rorh5rg/view
Add Custom CSS Code to Page
@media screen and (max-width: 768px)
.everest-forms .evf-field-container .evf-frontend-row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
margin-left: 0 !important;
margin-right: 0 !important;
}
@media screen and (max-width: 1050px){
.everest-forms .evf-field-container .evf-frontend-row {
margin-left: 0 !important;
margin-right: 0 !important;
}
}
Problem solved: https://drive.google.com/file/d/1-BYDO9-anScEIiDtkLzqk47gbEBk65xS/view
So maybe you should check your CSS-Code. 😉
Best
Maik