Styling Forms

When making a style for the form, it should be placed under 'Form Settings' in the 'Form CSS' field.

Use id's as your default so they do not affect the other dynamic forms in the website.

You don't always need '!important' after each attribute.

Example:

#test_submit { padding: 10px 30px; background-color: #FF80FF; } #test label { color: #D84CD8; font-weight: 700; }

Coloring a Placeholder:

::-webkit-input-placeholder { /* Edge */ color: red; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: red; } ::placeholder { color: red; }

Example:

#test_submit { padding: 10px 30px; background-color: #FF80FF; } #test label { color: #D84CD8; font-weight: 700; }

Coloring a Placeholder:

::-webkit-input-placeholder { /* Edge */ color: red; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: red; } ::placeholder { color: red; }