• 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!

    https://www.ads-software.com/plugins/frontend-uploader/

Viewing 1 replies (of 1 total)
  • Plugin Author Rinat

    (@rinatkhaziev)

    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.