Label Alignment in Form Block

Permalink
Hi I have added a form block to my site but the alignment of the label for a text area is aligned at the bottom of the text area, how to I get the label to align at the top of the text area?

Thanks

 
adajad replied on at Permalink Best Answer Reply
adajad
1. First copy everything from "webroot/concrete/blocks/form" to "webroot/blocks/form/templates/your_template_name/"

2. Open "webroot/blocks/form/templates/your_template_name/view.css" and change
.miniSurveyView table.formBlockSurveyTable td{ padding-bottom:4px; }

into
.miniSurveyView table.formBlockSurveyTable td{ padding-bottom:4px; vertical-align:top; }


3. Apply your custom template on your form block.

This should do the trick.
rappor replied on at Permalink Reply
Thanks Adajad,

That work great.
shadowcomputers replied on at Permalink Reply
shadowcomputers
Are you using a custom template or a marketplace tempalte?
Do you know how to edit theme CSS or are you looking to add something within the page editor?