Paragraph with class update
I updated yout code with this little improvement
I added this code from the line 287
.error, .notice, .success {padding:.8em;margin-bottom:1.6em;border:2px solid #ddd;}
.error.icon, .notice.icon, .success.icon {padding-left:26px; background-position:6px 50%; background-repeat: no-repeat;}
.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
.error a {color:#8a1f11; background:none; padding:0; margin:0; }
.error.icon { background-image:url('../img/icons/cross.png'); }
.notice a {color:#514721; background:none; padding:0; margin:0; }
.notice.icon{ background-image:url('../img/icons/key.png'); }
.success a {color:#264409; background:none; padding:0; margin:0; }
.success.icon{ background-image:url('../img/icons/tick.png'); }
So you can do <div class="success icon">All right!</div> and you will see the icon. If you don't add the icon class, you will not see the icon.
Also I added this little class for rounded corners
.round
{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
Thanks :)