Glad to help:
1) “How to remove.”
You can hide both with CSS:
form#sac-form label { display: none; }
You can enable the plugin’s Appearance settings and add that code to “Custom CSS styles”.
2) “How to. Change inner color of the message box.”
You can add this CSS:
div#sac-output { color: #333; background-color: #fff; }
ul#sac-messages li[style] { color: #333 !important; background-color: #fff !important; }
div#sac-output a { color: #333; }
You can enable the plugin’s Appearance settings and add that code to “Custom CSS styles”.
3) “Change the submit button for example an image?”
That would require a bit more work (which I do not have time for currently), but it is possible using the selector, #submitchat
-
This reply was modified 7 years ago by Jeff Starr. Reason: added info