Yep, your theme CSS is targeting specific input types. Apparently, it's not including the styles for the email type input (only the text type and textareas). You can try adding this to your theme stylesheet to get all of the bases covered. As I mentioned, you'll want to put it at the end of the stylesheet so these styles will supersede the others.
[css]
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {
background: url("images/field_bkg.png") repeat-x scroll 0 0 #FAFAFA;
border: 1px solid #DDDDDD;
border-radius: 5px 5px 5px 5px;
color: #6A6A6A;
font-family: "Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
padding: 10px 0
}
test screenshot: http://bit.ly/HhGJzr
and yeah, it looks like you can put these in your theme's style.css file found here
http://yogaleicester.co.uk/wp-content/themes/clarity/style.css
Posted 13 years ago on Saturday April 7, 2012 |
Permalink