Hi Josh,
It is possible, you would use the gform_submit_button filter like this for example
add_filter("gform_submit_button", "form_submit_button", 10, 2);
function form_submit_button($button, $form){
return "<button class='button' id='gform_submit_button_{$form["id"]}'><span class='bigger_text'>Contact Us</span><br><span class='smaller_text'>to learn more</span></button>";
}
you would add this to your theme's functions.php file between the opening and closing php tags.
Regards,
Richard
Posted 11 years ago on Wednesday June 12, 2013 |
Permalink