Title: Changing Field Sizes
Last modified: August 21, 2016

---

# Changing Field Sizes

 *  Resolved [D-Spayre](https://wordpress.org/support/users/d-spayre/)
 * (@d-spayre)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/)
 * Hi,
    First of all great plugin…
 * I just have a couple of questions regarding formatting the input fields. Name,
   Website & Testimonial
    I would like to add padding to the fields as they are 
   all sitting flush. I would also like to make the fields wider and make the font
   larger.
 * If I add a custom field called “Company” how do I place it below “Name” as all
   custom fields go to the bottom under “Testimonial”.
 * Thank you for your help.
 * [https://wordpress.org/plugins/hms-testimonials/](https://wordpress.org/plugins/hms-testimonials/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Author [Jeff K](https://wordpress.org/support/users/kreitje/)
 * (@kreitje)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4659941)
 * Hey D-Spayre,
 * Thanks!
 * I don’t apply any CSS to the fields so you are free to do that. Here is some 
   basic styling that will affect all text and textarea fields.
 *     ```
       .hms-testimonials-form input[type="text"],
       .hms-testimonials-form textarea {
       width:300px;
       font-size:16px;
       padding:5px 10px;
       }
       ```
   
 * As for your second part. Unfortunately right now you can’t define an order. However
   you can use javascript. I hope to some day add that ability in there.
 * Try adding something like this to your footer.php theme file. It uses javascript
   to move it.
 *     ```
       <script type="text/javascript">
       jQuery(document).ready(function() {
       	if ( jQuery('tr.cf-company').length > 0) {
       		jQuery('tr.cf-company').insertBefore( jQuery('tr.website') );
       	}
       });
       </script>
       ```
   
 * Let me know if this works out for you.
 * Jeff
 *  Thread Starter [D-Spayre](https://wordpress.org/support/users/d-spayre/)
 * (@d-spayre)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4660006)
 * Thanks Jeff I’ll give that a try.
 * Keep up the great work!!!
 *  Thread Starter [D-Spayre](https://wordpress.org/support/users/d-spayre/)
 * (@d-spayre)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4660010)
 * Hey Jeff,
 * I tried adding:
 *     ```
       .hms-testimonials-form input[type="text"],
       .hms-testimonials-form textarea {
       width:300px;
       font-size:16px;
       padding:5px 10px;
       }
       ```
   
 * to my css but it didn’t do anything. Am I missing something?
 * Thanks again,
 *  Plugin Author [Jeff K](https://wordpress.org/support/users/kreitje/)
 * (@kreitje)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4660012)
 * Can you post your link and I will take a look. Did you clear your cache at all
   to make sure it picks up the new CSS?
 *  Thread Starter [D-Spayre](https://wordpress.org/support/users/d-spayre/)
 * (@d-spayre)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4660014)
 * I did clear my cache but no luck.
 * Can I get your email as the site is password protected as it hasn’t gone live
   yet. I’ll send you the info.
 * Thank you,
 *  Plugin Author [Jeff K](https://wordpress.org/support/users/kreitje/)
 * (@kreitje)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4660017)
 * Sure thing.
 * [my username](http://wordpress.org/support/profile/kreitje) @hitmyserver.com

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Changing Field Sizes’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/hms-testimonials.svg)
 * [HMS Testimonials](https://wordpress.org/plugins/hms-testimonials/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/hms-testimonials/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/hms-testimonials/)
 * [Active Topics](https://wordpress.org/support/plugin/hms-testimonials/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/hms-testimonials/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/hms-testimonials/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Jeff K](https://wordpress.org/support/users/kreitje/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/changing-field-sizes/#post-4660017)
 * Status: resolved