Some questions regarding our first form

  • CustomDirect
    Asked on August 8, 2016 at 2:41 PM

    Hi can you please help us out with our form. All change requests are for aesthetic purposes and scalability issues.

    1) We want to put a max-width on the logo images so they dont stretch when window is shrunk

    2) The asterisks, we want to get them closer to the fields for required fields.

    3) Design details widget gets cut off when window is shrunk

    4) In Firefox browser, you cannot see what you type in the fields.

    5) Upload a file button needs to be centered.

     

    Thank you

    Jotform Thread 901208 Screenshot
  • David JotForm Support Manager
    Replied on August 8, 2016 at 3:42 PM

    1) You might like to create a log and upload your image log through an image field, so we can avoid this distortions: 

    Delete those image field and title, and just leave one image field, and upload the following URL: https://s3.amazonaws.com//jufs/PBDAVID/form_files/logo.png 

    Some questions regarding our first form Image 1 Screenshot 40

    2) To make asterisk the closer, inject the following code:

    .form-required {

        margin-left: 0px !important;

     

    }

    Some questions regarding our first form Image 2 Screenshot 51

    3) Still figure it out how to avoid it from being cut off.

     

    4) Inject the following code to fix that issue in Firefox: 

    .form-textbox, .form-texarea{

        padding-top: 2px !important;

        padding-bottom: 2px !important;

    }

    5) To center the upload button, inject the following code:

    @media only screen and (max-width: 480px) {

    #cid_8{

        margin-left: 75px !important;

    }

    }

    Some questions regarding our first form Image 3 Screenshot 62

    Here is my cloned version: https://form.jotform.co/62205395216856 

    Let us know if you need more help.

  • David JotForm Support Manager
    Replied on August 8, 2016 at 3:56 PM

    3) I found one of my colleagues solutions on the following thread: https://www.jotform.com/answers/416834-Configurable-list-widget-on-mobile-devices

    Please try injecting the following code inside the Configurable List widget CSS area(Select the widget, click on it's wand icon, then on Custom CSS):

    Some questions regarding our first form Image 1 Screenshot 30

    @media only screen and (max-device-width:30em){

    table#list {width: 100% !important;}

    textbox, textarea, select{width:100% !important;}

    input[type=text] {width: 100% !important;}

    th {font-size: 10px !important;font-weight: normal !important;}

    }

    @media only screen and (max-device-width:60em){

    table#list {width: 100% !important;}

    textbox, textarea, select{width:100% !important;}

    input[type=text] {width: 100% !important;}

    th {font-size: 10px !important;font-weight: normal !important;}

    }

    Result:

    Some questions regarding our first form Image 2 Screenshot 41

    Hope that helps.