Hello,
Working with the new forms designer old CSS scripts which were frequently used no longer work. Wondering if anyone has been able to update the CSS for the new form as I have been unable to locate the required syntax when inspecting the page.
This makes the background static and the form scrolls separately from the background.
This one really feels like it should be part of the template configuration and could be very easily added to the settings.
/*This is useful when using pictures for a background*/ body { background-repeat: no-repeat; background-position: center; background-attachment: fixed; background-size: cover; }
Read-Only Fields no longer show up as grey and are white by default which makes them confusing for most general users the script below should help with that but does not work either.
Options on the theme editor on what required, read-only fields should look like would be great if we are trying to make theming less dependant on CSS.
/*This makes the background for read-only fields gray instead of white*/ .cf-formwrap input[readonly]{background-color:#e0e0e0!important;border:0px;} .cf-formwrap select[readonly]{background-color:#e0e0e0!important;border:0px;} .cf-formwrap textarea[readonly]{background-color:#e0e0e0!important;border:0px;}