How to disable the red alert box?

  • Boxes_you_design
    Asked on January 12, 2018 at 12:59 PM

    Hi,

    We've looked at the submission on the Caldicott order form (see attached) but the red alert won't turn off.  Usually it does.

    How can we turn it off?

     

    Thanks,

    Janet

  • Jed_C
    Replied on January 12, 2018 at 2:17 PM

    If you want to disable the red box error message. Please inject the CSS code below:

    .form-error-message

    {

        background: none !important;

        background-color: transparent !important;

        border: none;

        border-radius: 0;

        box-shadow:none !important;

        color: #000000 !important;

    }

     

    .form-error-arrow, .form-error-arrow-inner

    {

        border:none;

    }

     

    Additionally, kindly add this code to your form's CSS to make the background error from light red into transparent color:

    .form-line, .jf-required, .form-line-error{

    background-color: transparent !important;

    }

    The end result should look something like the image below.

    1515784779form error Screenshot 10

    Here's the guide how you can inject CSS code into your form. If you have any questions or need further assistance, please let us know.