1
0
-1

The background color is a dark red and the error message text color is red making it hard to read. How can I change this?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can modify the background color using CSS. 

      In this example, we will change the background color to white.

      Go to Website > Custom CSS and add the following:

      #pageMessagesBox {
      background-color: #fff;
      }

      Be sure to click Save

        CommentAdd your comment...