I have a form created but the submit button is cut off - only shows the top half of the button image. Below the button is some code: [gravityform id="1" name="How much will your project cost?"]
How do I fix this? Full button and remove the code?
I have a form created but the submit button is cut off - only shows the top half of the button image. Below the button is some code: [gravityform id="1" name="How much will your project cost?"]
How do I fix this? Full button and remove the code?
Fixed the code issue. Now, if I can get a solution to the submit button.
Can you post a link to your form so we can take a look.
In your style.css you have a declaration on line 646 that has a height of 20px for every input. The submit button is an input so it's following that rule. So place this in your style.css file:
[css]
input[type="submit"] {
height: auto;
}
This will make all inputs with the type of submit to auto height.
Great! Thanks, Rob.
No problem, glad to help!