Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author PlanSo

    (@planso)

    I’m not quite sure what exactly you are trying to accomplish. But it is possible to set the thank you page to the url you posted.

    If you specify your needs a little more in detail we’ll sure be able to provide a solution.

    Cheers

    mikerayjones

    (@mikerayjones)

    Hi, I love your plugin but I have two problems.

    First, using the file upload objects, how can I restrict filetypes (eg .pdf/.doc) and file sizes?

    Second, I want to reduce the default font size. I realise I can pick a font size (eg font-size: 12px) via Advanced > CSS Style for input text, but how can I do it for labels (or preferably, all objects)?

    Many thanks
    Mike.

    Plugin Author PlanSo

    (@planso)

    Mikerayjones, thank you for your feedback.

    We currently do not offer either option to restrict file uploads by size and/or type. We like this feature however and will likely push it out as an option in one of the next versions.

    As for your second question, the simplest way to solve your request would be to add the following css to your theme’s style sheet:

    .planso-form-builder .form-group label{
      font-size: 12px;
    }
    .planso-form-builder .form-group textarea,
    .planso-form-builder .form-group input[type="text"],
    .planso-form-builder .form-group input[type="number"],
    .planso-form-builder .form-group input[type="search"],
    .planso-form-builder .form-group input[type="email"],
    .planso-form-builder .form-group input[type="tel"],
    .planso-form-builder .form-group input[type="url"],
    .planso-form-builder .form-group input[type="time"],
    .planso-form-builder .form-group input[type="date"],
    .planso-form-builder .form-group input[type="datetime"],
    .planso-form-builder .form-group input[type="datetime-local"],
    .planso-form-builder .form-group input[type="month"],
    .planso-form-builder .form-group input[type="week"] {
      font-size: 12px;
    }

    You can change the size by altering the value after font-size – here 12px.

    If this solves your question it would be nice if you would mark this thread as ‘resolved’.

    Cheers

    mikerayjones

    (@mikerayjones)

    Thanks for your lightning-quick response.

    Re first item: understood, thanks.

    Re second item: that worked, to a degree, however:

    a) Text in combo, multi-select and file upload controls remains unaffected;
    b) the field dimensions also remain unaffected, and are now inappropriately large for the new, smaller font size.

    I guess what I am really trying to achieve, is to shrink the entire form by x percent. Is that feasible?

    Thanks again.
    Mike.

    Plugin Author PlanSo

    (@planso)

    Could you please send us a link to an example page. You can either post it here or send us the link via email ([email protected])

    Cheers

    mikerayjones

    (@mikerayjones)

    I have emailed you a couple of screenshots.

    Thanks
    Mike.

    Plugin Author PlanSo

    (@planso)

    Thank you for mailing the screenshots.

    Please change the CSS Code from above to the following and it should solve the problem with the select boxes and the file upload:

    .planso-form-builder .form-group label{
      font-size: 12px;
    }
    .planso-form-builder .form-group textarea,
    .planso-form-builder .form-group select,
    .planso-form-builder .form-group input[type="text"],
    .planso-form-builder .form-group input[type="number"],
    .planso-form-builder .form-group input[type="search"],
    .planso-form-builder .form-group input[type="email"],
    .planso-form-builder .form-group input[type="tel"],
    .planso-form-builder .form-group input[type="url"],
    .planso-form-builder .form-group input[type="time"],
    .planso-form-builder .form-group input[type="date"],
    .planso-form-builder .form-group input[type="datetime"],
    .planso-form-builder .form-group input[type="datetime-local"],
    .planso-form-builder .form-group input[type="month"],
    .planso-form-builder .form-group input[type="week"],
    .planso-form-builder .form-group input[type="file"] {
      font-size: 12px;
    }
    .planso-form-builder .form-group .help-block {
      font-size: 12px;
    }

    The last block is responsible for the help text and the middle part now also addresses the select box and file input areas.

    Cheers

    mikerayjones

    (@mikerayjones)

    Many thanks for your help, please consider this issue closed.
    Mike.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Submit Post’ is closed to new replies.