Tell us what you are trying to do. The form fields are too narrow in height for people to type in, especially on mobile. How can I adjust the height of the fields?
Is there any documentation that you are following? Haven't found anything
Is there a similar example that we can see? See attached
Can you please share problem URL and admin access details.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
You can use the media query break points in order to add your custom CSS based on your choice per device resolution:
=> hidden link
For now, I've added the following CSS code for mobile to your form's CSS Editor:
=> hidden link
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
div.row input[type="text"] {
margin-bottom:20px;
height:35px;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
Can you please confirm you see input text box with bit bigger size on mobile device.