PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

User defined Price field cannot be formatted to small ( Urgent)

  1. imrc
    Member

    In the Product Field, I have User defined price, When i select that, the input price is showing in big size, how to reduce the size of the user defined input field, there is no options such as "SMALL, MEDIUM" please help its urgent.

    http://wwwimrc.zippykid.it/?p=83

    Posted 11 years ago on Thursday July 12, 2012 | Permalink
  2. Here is one way to do it with CSS. Target all the fields where you have the user defined price:

    [css]
    
    .gform_wrapper .gform_body #input_2_44,
    .gform_wrapper .gform_body #input_2_47,
    .gform_wrapper .gform_body #input_2_60,
    .gform_wrapper .gform_body #input_2_64,
    .gform_wrapper .gform_body #input_2_69,
    .gform_wrapper .gform_body #input_2_79,
    .gform_wrapper .gform_body #input_2_83 {
    	width: 14em;
    }

    Adjust the width from there and add margins around it if you like. There are likely other ways of doing it, but this worked for me.

    Posted 11 years ago on Thursday July 12, 2012 | Permalink