How do I 'center' 'Save / Add' button

  • lritter
    Asked on February 6, 2020 at 2:35 PM

    Also, how do I 'center' 'Save / Add' button. Notice the text is pushed to the right. 

    1581012914JotForm Screenshot 10

  • bojan93
    Replied on February 6, 2020 at 3:13 PM

    You can add the following CSS styling to your current Configurable list:

    #list  span {

      width: 440px;

    }

    .add {

      padding: 5px;


    }

    To add the code above, you need to select the list and click on the Widget Settings, and in Custom CSS add the lines at the end. Since you have multiple fields, you need to do this in each field. 

    How do I center Save / Add button Image 1 Screenshot 20

    To configure Save / Add button for the Infinitive List, add the following:

    .save {

    width: 150px;

    }

    Once again, you need to open the Widget settings, and to add the code in the Custom CSS tab. Please make sure you add it to the end.

    If the field is too wide, you can adjust the size to your likings. Currently, it's set to 150px, but you can change that number to suit your needs. 

    I hope this will help you.


  • lritter
    Replied on February 6, 2020 at 3:55 PM

    Perfection! Thank you!