Skip to content
English
  • There are no suggestions because the search field is empty.

How to Change the Custom Amount Error Message

Custom CSS

This CSS will allow you to change the text of the error message that occurs when a donor selects "Other" then proceeds without entering an amount.

.css-lft928.Mui-error{
    font-size:0pt;
}

.css-lft928.Mui-error:after{
    font-size:0.75rem;
  content:"Custom Amount Error Message";
}