Placing dollar sign in front of a number field

  • kauseway
    Asked on February 13, 2017 at 8:13 AM

    I am trying to place a $ (dollar sign) in front of a number field, I tried to use the label from the section below it and move it up but then there is a space where the label used to be. Is there a better way to do this?

     

    Seems like using the label and moving it up is not good because it creates a gap. Then I need to start moving all the fields below it up??

    https://www.dropbox.com/s/uwdsk4h2w7tyzzb/Screen%20Shot%202017-02-13%20at%207.05.54%20AM.png?dl=0

     

    https://form.jotform.com/70379209481158

  • Elton Support Team Lead
    Replied on February 13, 2017 at 10:26 AM

    That's possible by injecting custom CSS codes into your form. You can try the following.

    div#cid_67:before {

        content: "$";

        font-size: 43px;

        position: absolute;

        left: 63px;

        top: 10px;

    }

    Guide: http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Result:

    Placing dollar sign in front of a number field Image 1 Screenshot 20

    If you need further help, let us know.