Line 62 of your theme stylesheet sets a blanket 50% width on all inputs.
[css]
input {
width: 50%;
}
That's sloppy CSS work. Inputs aren't all created equal so they shouldn't all be defined the same. When you add a custom image, it is still technically an input element ( input type='image' ) so it's going to inherit from that rule.
You can add this to the end of your theme stylesheet and it should override the previous rule. I also threw in the cursor property because something was overriding that as well.
[css]
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer input[type=image] {
width:auto;
cursor: pointer
}
screenshot: http://bit.ly/nIsFBj
Posted 13 years ago on Saturday September 3, 2011 |
Permalink