Title: Submit Post
Last modified: August 22, 2016

---

# Submit Post

 *  Resolved [mayur5](https://wordpress.org/support/users/mayur5/)
 * (@mayur5)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/)
 * How do you change the submit button to post to an address. When they click on
   the submit button it has to go to an website
    [https://reservation.asiwebres.com/SearchAvailability.aspx?id=1b28ac43c900446db574416efc38bbf5&Operation=Date](https://reservation.asiwebres.com/SearchAvailability.aspx?id=1b28ac43c900446db574416efc38bbf5&Operation=Date)
 * [https://wordpress.org/plugins/planso-forms/](https://wordpress.org/plugins/planso-forms/)

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

 *  Plugin Author [PlanSo](https://wordpress.org/support/users/planso/)
 * (@planso)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881542)
 * 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](https://wordpress.org/support/users/mikerayjones/)
 * (@mikerayjones)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881583)
 * 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](https://wordpress.org/support/users/planso/)
 * (@planso)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881592)
 * 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](https://wordpress.org/support/users/mikerayjones/)
 * (@mikerayjones)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881607)
 * 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](https://wordpress.org/support/users/planso/)
 * (@planso)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881629)
 * Could you please send us a link to an example page. You can either post it here
   or send us the link via email (support@planso.de)
 * Cheers
 *  [mikerayjones](https://wordpress.org/support/users/mikerayjones/)
 * (@mikerayjones)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881641)
 * I have emailed you a couple of screenshots.
 * Thanks
    Mike.
 *  Plugin Author [PlanSo](https://wordpress.org/support/users/planso/)
 * (@planso)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881656)
 * 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](https://wordpress.org/support/users/mikerayjones/)
 * (@mikerayjones)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881674)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/planso-forms_198c4a.svg)
 * [PlanSo Forms](https://wordpress.org/plugins/planso-forms/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/planso-forms/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/planso-forms/)
 * [Active Topics](https://wordpress.org/support/plugin/planso-forms/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/planso-forms/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/planso-forms/reviews/)

 * 8 replies
 * 3 participants
 * Last reply from: [mikerayjones](https://wordpress.org/support/users/mikerayjones/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/submit-post-1/#post-5881674)
 * Status: resolved