Require Field Highlight

  • commercialkings
    Asked on September 9, 2016 at 10:37 AM

    For some reason, I might form quick highlighting or lighting up when a user misses a require field. It stays drak and you can hardly read it. I'v tried to make adjustments in the form design but have been unsucessful. How can this be fixed?

  • David JotForm Support Manager
    Replied on September 9, 2016 at 12:19 PM

    The required highlight color is set to be transparent, if you want to set a color, then you can inject the following CSS code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    .form-line-error{

        background-color: #d24b48 !important;

    }

    Let us know if you need more help.

  • commercialkings
    Replied on September 9, 2016 at 3:16 PM

    Thanks, one more thing, when your mouse is hovering over the SELECT YOUR QUANTITY options, it turns the text black, making it so you can't read it. How and I make that turn a different color so that its readable? 

  • David JotForm Support Manager
    Replied on September 9, 2016 at 5:22 PM

    You can inject the following code: 

    .hover-product-item:hover {

        color: blue !important;

    }

    Let us know if you need more help, we will be glad to assist you.