How to change the required field arrow color on a form?

  • STKlife
    Asked on September 30, 2016 at 6:39 AM

    I want to change the color of the arrows that point to the empty required fields. I found this code and injected it into custom css section:

     

    .form-error-arrow-inner {

    border-color: transparent transparent #FFA !important;

    }

     

    After saving and previewing it a few times, the color of the arrow is still red. How do I change it?

    How to change the required field arrow color on a form? Image 1 Screenshot 20

  • liyam
    Replied on September 30, 2016 at 10:50 AM

    Hello STKlife,

    You can try this code:

    .form-error-arrow {
        border-bottom-color: #fff !important;
    }

    Warm regards :)