Custom CSS: How to stop text from being greyed out?

  • srcc01
    Asked on August 29, 2017 at 1:12 PM

    Hi

     

    I am using a theme and when I go to make a product choice the pricing gets greyed out. How can I prevent that?

     

    Custom CSS: How to stop text from being greyed out? Image 1 Screenshot 20

  • Chriistian Jotform Support
    Replied on August 29, 2017 at 1:49 PM

    Please inject this custom CSS to your form.

    .form-payment-total {

      color: #FFF !important;

    }

     

    Custom CSS: How to stop text from being greyed out? Image 1 Screenshot 20

  • srcc01
    Replied on August 29, 2017 at 2:00 PM

    Hmm, gave it a try but didn't seem to work. Did I do something wrong?

    Custom CSS: How to stop text from being greyed out? Image 1 Screenshot 20

  • aubreybourke
    Replied on August 29, 2017 at 2:27 PM

    Try again using this CSS code:

    .form-payment-total {
        color : #FFF !important;
    }

    .form-product-item-detail {
        color : white !important;
    }

    How to Inject Custom CSS Codes