No problem, try dropping this in to your theme's stylesheet for the inputs:
[css]
.widget-area .gform_wrapper .top_label input.medium {
width: 99%;
}
Your button style is coming from your theme:
[css]
input[type="submit"]:active, input[type="button"]:active, button:active {
border: 1px solid #666;
background: #CCC;
background: -moz-linear-gradient(top,rgba(255, 255, 255, .35) 0%,rgba(10, 10, 10, .4) 100%);
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255, 255, 255, .35)),color-stop(100%,rgba(10, 10, 10, .4)));
background: -webkit-linear-gradient(top,rgba(255, 255, 255, .35) 0%,rgba(10, 10, 10, .4) 100%);
background: -o-linear-gradient(top,rgba(255, 255, 255, .35) 0%,rgba(10, 10, 10, .4) 100%);
background: -ms-linear-gradient(top,rgba(255, 255, 255, .35) 0%,rgba(10, 10, 10, .4) 100%);
background: linear-gradient(top,rgba(255, 255, 255, .35) 0%,rgba(10, 10, 10, .4) 100%);
}
You can target the submit button via this selector:
[css]
.widget-area .gform_footer #gform_submit_button_1 {
}
The description field accepts HTML, so you can just use a
tag there.
Posted 12 years ago on Monday April 2, 2012 |
Permalink