Form Block - Recipient Email not editable

Permalink
Hi Folks,

in case somebody else also running into this:

problem:

When using a bootstrap theme (in my case self-created) the email recipient in the form-block is not editable because of the "input-prepend"-class set in the form_setup_html.php.

solution:

copy /concrete/blocks/form/form_setup_html.php to /blocks/form
edit the copied file and search for "input-prepend". remove this div, but keep the nested elements. search for the <label> with the class "add-on" and add to its style-tag "width: 20px; margin-right: 5px;".

thats it.

sk01