How do I get the drop downs for Expiration Month and Expiration Year to have rounded fields?

  • netruck
    Asked on February 10, 2017 at 2:36 PM
    how do I get the drop downs for Expiration Month and Expiration Year to have rounded fields?
  • Jan
    Replied on February 10, 2017 at 2:55 PM

    Please try inserting the CSS code below: 

    #input_14_cc_exp_month {
       -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
       border-radius: 6px;
    }

    #input_14_cc_exp_year {
       -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
       border-radius: 6px;
       height: 30px;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:

    How do I get the drop downs for Expiration Month and Expiration Year to have rounded fields? Image 1 Screenshot 20

    Hope that helps. Thank you.