I would like to change the background color and border of all fields in CRED forms but I am not sure where does the grey background comes from.
hidden link
I would like to do this one master CSS code that covers all forms. I would also like this to apply for all types of custom fields.
Can this be done? How should I approach it?
Hi,
Thank you for contacting us and I'd be happy to assist.
The styles for the form input fields are inherited from the active theme. To check which CSS code is applied to different page elements, you can use Google Chrome's inspect element tool, as explained in this guide:
hidden link
The generic custom CSS code that applies to all fields in all Toolset Forms will look like this:
form.cred-form button,
form.cred-form input,
form.cred-form optgroup,
form.cred-form select,
form.cred-form textarea {
background-color: #eeeeee !important;
border: 1px solid #000000 !important;
}
I hope this helps and please let me know if you need any further assistance around this.
regards,
Waqar
My issue is resolved now. Thank you!