Hi all,
Here’re several goals I want to achieve for our sign up form on this page: https://www.advantiahealth.com/testhh14850/
- Make the entire form centered
- Make the input fields and submit button the same height
I’ve been adding custom css to adjust the styling, but I have this problem right now: I’m not sure how to change the padding of the submit button on mobile. Currently the bottom padding looks a bit off.
Here’s the css I have:
/* Submit Button Gravity Forms
-----------------------------*/
body .gform_wrapper .gform_footer input[type=submit] {
color: #FFFFFF;
background: #7dced0;
font-size: 20px;
letter-spacing: 1px;
height: 30px;
min-width: 150px;
border: none;
border-radius: 30px;
transition: 0.3s;
}
body .gform_wrapper .gform_footer input:hover[type=submit] {
background: #94d3d3;
}
body .gform_wrapper .gform_footer input[type=submit] {padding-top:7px;
padding-bottom:7px; }
/* hide form title
-----------------------------*/
body .gform_wrapper h3.gform_title {
display: none !important;
}
/* form input field container padding */
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container {padding-bottom:8px;}
@media only screen and (min-width: 641px) {
body #gform_wrapper_1 {
margin: 0 auto; text-align: center; width:60%;
}
}
Can someone help me to take a look at this? Thank you in advance!!