How to Change Text color .importantMessage

Doesn't look like you've saved your changes, as your CSS is this:

HTML:
.importantMessage {
margin: 10px 0;
color: rgb(204, 2, 2);
background-color: rgb(66, 66, 66);
text-align: center;
padding: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
border: solid 1px rgb(222, 80, 80);

Notice your color is still red.
 
Top Bottom