Advertisement
Mwordpress

Gravity Form newsbt & amnews & lightmag

Nov 17th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. function mwp_gravity_form() {
  2.     ?>
  3.     <style>
  4.     .gform_wrapper input.large,
  5.     .gform_wrapper input.medium,
  6.     .gform_wrapper input.small {
  7.         border:1px solid #eee !important;
  8.         border-radius:3px;
  9.     }
  10.     .gform_wrapper textarea.large {
  11.         border:1px solid #eee !important;
  12.         border-radius:3px;
  13.     }
  14.     .gform_wrapper .button{
  15.         padding:6px 12px !important;
  16.     }
  17.     </style>
  18.     <script>
  19.     jQuery(document).ready(function(){
  20.         jQuery('.gform_footer input.gform_button').addClass('btn btn-default');
  21.     });
  22.     </script>
  23.     <?php
  24. }
  25. add_action('wp_head', 'mwp_gravity_form', 9999999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement