Change font colour of highlighted text in payment form.

  • EBSDN
    Asked on August 6, 2020 at 1:42 AM

    I need to change the font colour of the highlighted text in a payment form. At the moment the form background is a black image and when you hover over it you cant read it.

  • Ariel JotForm Support
    Replied on August 6, 2020 at 2:55 AM

    Greetings,

    Thank you for reaching Support.

    You can use the following CSS code to set the font color of your products to white, regardless of the state.

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

    15966967472020 08 06 14 52 05 Screenshot 10


    Otherwise, use the code below if you want the font color to be white only when hovered on.

    .form-product-item-detail:hover {
        color: #fff !important;
    }

    15966966972020 08 06 14 51 09 Screenshot 21

    Related Guide: How to Inject Custom CSS Codes.


    Please give it a try and let us know how it goes.

  • EBSDN
    Replied on August 6, 2020 at 5:52 AM

    Works perfect thanks!!