How Do I Remove or Hide the Currency Name ('USD' for Example) from the Prices and Total in Payment Fields?

  • ChuckPounds
    Asked on December 23, 2015 at 10:16 AM

    Added CSS code to put white boxes to cover up USD...it worked on most of them, but didn't work on some. Is it possible to just take USD using CSS because I haven't found a way of doing that.

    Jotform Thread 731255 Screenshot
  • abajan Jotform Support
    Replied on December 23, 2015 at 11:19 AM

    Let me work on this and get back to you as soon as I can.

    Thanks

  • abajan Jotform Support
    Replied on December 23, 2015 at 4:12 PM

    Hi again,

    Please substitute the following for your current code:

    .form-product-details:after {
       content : "";
       position : absolute;
       width : 40px;
       height : 20px;
       margin-left : -40px;
       background-color : #FFF;
    }

    Do inform us if you need further assistance.

    Cheers

  • abajan Jotform Support
    Replied on December 23, 2015 at 4:23 PM

    If you wish to hide the USD after the total too, use the following code instead:

    .form-product-details:after,
    .form-payment-total:after {
       content : "";
       position : absolute;
       width : 40px;
       height : 20px;
       margin-left : -40px;
       background-color : #FFF;
    }

    Thanks