form field longer take out credit card dash and slash

  • BBC2016
    Asked on April 28, 2016 at 12:49 AM

    I had a question for you.

    In the BILLING INFO SECTION of my form here: http://buildingbridgescoalition.org/registration-form/

    I want to take out the dash and slash between fields and make the security code box longer so its the same size as the others and they all line up.

    Can u help me do this?? I can't figure it out. There is ALOT Of css stuff and I'm confused!

  • beril JotForm UI Developer
    Replied on April 28, 2016 at 5:03 AM

    It seems it is not possible to delete the dash and slash on your payment tool. I will check it again and get back to you soon.

  • beril JotForm UI Developer
    Replied on April 28, 2016 at 6:28 AM

    I've fixed that issue by adding the following code on your form.

    input[name$="[cc_ccv]"] {

        width : 243px !important;

    }

    #input_13_cc_exp_year {

        width: 243px !important;

    }

    Here how it works on your website:

    form field longer take out credit card dash and slash Image 1 Screenshot 20

    If you have any question or issues, please do not hesitate contacting us. We will be glad to assist you.

  • BBC2016
    Replied on April 28, 2016 at 10:31 PM

    the fields are now the right sizing but the SLASH and DASH re still there>

    https://www.jotform.com//?formID=61188602679162

  • Kevin Support Team Lead
    Replied on April 29, 2016 at 1:42 AM

    That would be possible by injecting this CSS code to your form: 

    .form-address-table tr:nth-child(4) span:nth-child(1), .form-address-table tr:nth-child(3) span:nth-child(1){

        font-size: 0px;

    }

    .cc_exp_month,#sublabel_cc_exp_month, #sublabel_cc_number, .cc_number{

        font-size: 12px;

    }

    This will hide the dash and slash between the fields  in the payment area.

    Follow the steps  on the guide below to inject the code to your form: 

    -How-to-Inject-Custom-CSS-Codes