hmmm... meinst du das hier? damit kann man ja das mailformular frei gestalten...
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19:
| tt_content.mailform.20 { accessibility = 1 noWrapAttr=1 formName = mailform dontMd5FieldNames = 1 REQ = 1 layout = <div class="csc-mailform-field">###LABEL### ###FIELD###</div> COMMENT.layout = <div class="csc-mailform-label">###LABEL###</div> RADIO.layout = <div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div> LABEL.layout = <div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div> labelWrap.wrap = | commentWrap.wrap = | radioWrap.wrap = |<br /> REQ.labelWrap.wrap = | stdWrap.wrap = <fieldset class="csc-mailform"> | </fieldset> params.radio = class="csc-mailform-radio" params.check = class="csc-mailform-check" params.submit = class="csc-mailform-submit" } |
ich verwende es in meiner seite inetwa so:
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19:
| tt_content.mailform.20 { accessibility = 1 noWrapAttr=1 formName = mailform dontMd5FieldNames = 1 REQ = 1 layout = ###LABEL### ###FIELD###<br /> COMMENT.layout = ###LABEL### RADIO.layout = ###LABEL### ###FIELD### LABEL.layout = ###LABEL### ###FIELD### labelWrap.wrap = | commentWrap.wrap = | radioWrap.wrap = | REQ.labelWrap.wrap = | stdWrap.wrap = <div id="mailform"><fieldset> | </fieldset></div> params.radio = params.check = params.submit = } |