Okay, having looked even more closely at your form.. this is going to be the easiest route to getting something consistent. The current theme sets some goofy background image that's simply not going to work for you very easily. You can try adding this to the end of your theme stylesheet.
[css]
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="url"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="number"],
body .gform_wrapper input[type="password"],
body .gform_wrapper textarea,
body .gform_wrapper select {
background-image: none !important;
background-color: #EFEFEF;
font-family: Georgia,"Times New Roman",Times,serif;
font-style: italic;
font-size: 1em !important;
color: #909090;
text-shadow: 0 1px 0 #FFFFFF;
border: 1px solid #E6E6E6;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px
}
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="url"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="number"],
body .gform_wrapper input[type="password"],
body .gform_wrapper textarea {
padding: 4px 0
}
body .gform_wrapper select {
padding: 3px 0
}
body .gform_wrapper input[type=submit] {
font-family: Georgia,"Times New Roman",Times,serif;
font-style: italic;
font-size: 1em !important;
color: #909090;
text-shadow: 0 1px 0 #FFFFFF;
height: 2em;
line-height: 2em;
border: 1px solid #E6E6E6;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px
}
body .gform_wrapper input[type=image] {
width: auto;
height: auto;
border: none !important;
padding: 0 !important;
background: none !important
}
and here's my test screenshot: http://bit.ly/pDYsJz
That should give you a good base to run with. Good luck with it.
Posted 13 years ago on Thursday September 29, 2011 |
Permalink