Skip to content

Instantly share code, notes, and snippets.

@malachi358
Created May 20, 2013 01:46
Show Gist options
  • Save malachi358/5609942 to your computer and use it in GitHub Desktop.
Save malachi358/5609942 to your computer and use it in GitHub Desktop.
Adding Classes to Gravity Forms plugin for WP, You can add this code in Dashboard -> your theme -> Custom Javascript to make the gravity forms pick up the theme styling.
jQuery(document).ready(function(){
jQuery('input[type="text"]').addClass('textfield');
jQuery('input[type="submit"]').addClass('fancy_button');
jQuery('textarea').addClass('textarea');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment