@pcdoc231,
You can modify the send button with css, follow the example below:
input[type=”submit”] {
padding: 1em 2em;
font-size: 1.6rem;
font-family: “Lato”;
text-transform: uppercase;
line-height: 1;
color: #FFF;
background: #3D3D3D none repeat scroll 0% 0%;
border: medium none;
border-radius: 3px;
cursor: pointer;
float: right; //To move the send button to the right
}
Or better still you can use
#rcf-submit {
padding: 1em 2em;
font-size: 1.6rem;
font-family: “Lato”;
text-transform: uppercase;
line-height: 1;
color: #FFF;
background: #3D3D3D none repeat scroll 0% 0%;
border: medium none;
border-radius: 3px;
cursor: pointer;
float: right; //To move the send button to the right
}
About the display message and the link redirection that is not possible at the moment but would be included in the next release.