Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    The width of the input text fields, and the other elements in the forms generated by the plugin, are defined as percentage, to allow maintain the forms structures if its dimensions change. But if you want define, for example, a minimum width allowed, you can edit the styles associated with the form through the CSS file: “/wp-content/plugins/calculated-fields-form/css/stylepublic.css”

    For example, you can paste the following styles definition at the end of file:

    #fbuilder input[type=’text’],
    #fbuilder textarea,
    #fbuilder select{
    min-width:300px !important;
    }

    Best regards.

    Thread Starter UserDG

    (@tenkepadu)

    It works! Thank you again! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to adjust input text field?’ is closed to new replies.