Hey petersfriends,
Yes there is a setting for custom CSS on the “Form” tab. You can paste it in there. Is that all you needed or did you need help with styling something?
– Craig
First of all thank you very much for your quick reply!
First I just need the alert-messages in the form from currently orange to our corporate-design-color and second the submit button on the left side, background color also like our corporate-design and with text-color white. Is this possible?
Best regards!
Yes this is possible. The background color of the submit button can be changed on the “Form” tab with a setting. If you just wanted to change the submit button but not the register button, you would use this CSS:
#rtec form .rtec-submit-button {
background: #f0f;
}
Here is the CSS for the others:
Change the border color and the error message background color:
#rtec .rtec-form-field .rtec-error {
border-color: #f0f !important;
}
#rtec .rtec-form-field .rtec-error-message {
background-color: #f0f;
}
Change the text color of the submit button:
#rtec form .rtec-submit-button {
color: #fff;
}
Change the alignment of the submit button
#rtec form .rtec-form-buttons {
text-align: left;
}
Let me know if you have more questions!
– Craig
all works great – thanks a lot!
one final question: do you have a css-code to change the font-style of the error-message from bold to regular?
No problem!
Yes this will do that:
#rtec .rtec-error-message {
font-weight: 400;
}
– Craig
I hope everything is looking like you hoped! I’m going to mark this as resolved but let me know if you need help customizing the look of the form.