Title: Custom Field width/size
Last modified: August 21, 2016

---

# Custom Field width/size

 *  [chellisage](https://wordpress.org/support/users/chellisage/)
 * (@chellisage)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/custom-field-widthsize/)
 * I’ve been successfully able to add an email field & phone field by hacking the
   main file a little. It was simpler than I thought. However, now I want to control
   the size of those fields on the form presentation.
 * For example:
    [input type=”text” name=”author_phone” id=”author_phone” class=”
   required” description=”Phone Number” multiple=””]
 * I was able to add that, but I don’t need it the full width of the page. I’d like
   to be able to put an email & phone field on the same line but I need to shorten
   the input text box. Is there a way?
 * I tried adding width=”200px” but that didn’t work.
 * Thanks in advance!
 * [http://wordpress.org/plugins/frontend-uploader/](http://wordpress.org/plugins/frontend-uploader/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Rinat](https://wordpress.org/support/users/rinatkhaziev/)
 * (@rinatkhaziev)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/custom-field-widthsize/#post-4130258)
 * You should probably change width with CSS.
 * Here’s the line from plugin’s css file:
 *     ```
       .ugc-inner-wrapper .ugc-input-wrapper input[type="text"] {
       width: 100%;
       ```
   
 * If you put something like
 *     ```
       .ugc-inner-wrapper .ugc-input-wrapper input[type="text"] {
       width: 200px !important;
       }
       ```
   
 *  somewhere in the theme’s CSS, that should do.
 * Also I don’t recommended hacking the plugin’s files since you will lose your 
   changes with the next update.

Viewing 1 replies (of 1 total)

The topic ‘Custom Field width/size’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/frontend-uploader_81a69d.svg)
 * [Frontend Uploader](https://wordpress.org/plugins/frontend-uploader/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/frontend-uploader/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/frontend-uploader/)
 * [Active Topics](https://wordpress.org/support/plugin/frontend-uploader/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/frontend-uploader/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/frontend-uploader/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Rinat](https://wordpress.org/support/users/rinatkhaziev/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/custom-field-widthsize/#post-4130258)
 * Status: not resolved