Is it possible to show a currency simbol in payment tool's total field?

  • office529
    Asked on April 6, 2016 at 1:57 PM

    Is it possible to have the currency symbol display on a credit card payment calculated field?  I was able to get a text calculated field to display with the dollar sign, however, I could not make it work in the field with the credit card payment tool (authorize.net).

     

    Thank you!

  • Ben
    Replied on April 6, 2016 at 2:13 PM

    It is not possible to do it through some builder option, but it is possible to do it by adding a bit of CSS to your form. This is the CSS:

    [data-type="control_authnet"] span.form-sub-label-container::before {
        content: "$";
        font-size: 15px;
        left: 6px;
        margin-right: -10px;
        position: relative;
    }
    [data-type="control_authnet"] input[data-custom-amount-field] {
        padding-left: 1em;
    }The code should work in general, but since each form is a bit different, it is possible that there are minor adjustments needed to make it work properly, so if that is the case, just let us know the form where the adjustments are needed.You can see how to add your CSS to your form here: Inject Custom CSS Codes I only suggest adding it after all the other CSS code in there (if any).