Make "Running total" box wider?

  • michaelbarnholdt
    Asked on November 30, 2015 at 11:38 AM
    also can the running total box be a little wider?
  • Charlie
    Replied on November 30, 2015 at 12:02 PM

    You can adjust the "Running total" box by using a custom CSS code, in my case, I'll use the Form Designer Tool and inject the CSS code there. You can follow the quick steps below.

    1. First, open your Form Designer Tool.

    2. Here, double click on the text box you want to adjust the width. We want to double click on it to get it's field ID, in my case the field ID for the "Running Total" is #input_136. Here's my custom CSS code:

    #input_136 {

        width : 200px !important;

    }

    You can follow the screenshot below. Now you can adjust the width depending on your own preferences.

    Make Running total box wider? Image 1 Screenshot 20

     

    Another way to get the field ID is checking the fields properties. Here's a guide that you can follow: http://www.jotform.com/help/146-How-to-find-Field-IDs-Names 

     

    I hope that helps.