I'm looking for CSS code to change my check out custom form button text. Currently is says "purchase", I'd like it to say "submit".
Here is some code I'm using to change the button background color and text color that is working... now, I need to change the button text.
.form-wrapper input[type="submit"] {
display: block;
background: #3d6a66 !important;
color: #dcdcdd !important;
}
Thank you!
Mark