Is there a way we can add a number field, but with currency format?

  • Marcia Bernales
    Asked on October 6, 2023 at 1:27 AM

    Is there a way we can add a number field, but with currency format?

  • Richard Enterprise Business Development Manager
    Replied on October 6, 2023 at 3:31 AM

    Hi Marcia Bernales,


    Thank you for contacting Jotform Support.


    Currently there is not a currency field in the Configurable List widget, however you can add the dollar sign to the number field with some CSS code, for example this one: 

    .col5 .stepper-wrap:before {

        content: "$";

        font-size: 15px;

    }

    Please note: This needs to be injected to the widget's CSS section, here is a guide with more info about it: https://www.jotform.com/help/428-How-to-Inject-CSS-Codes-to-Widgets 

    add css to configurable list field Screenshot 10

    You need to replace the "5" in the selector, the one in bold above, with the column number where your field is placed on. 

    Note that you can change the sign font size, simply change the 15px with another value you would like to have. 

    I hope this helps.