TextArea with Label
code
textarea_field_with_label :product, :description
produces
HTML Output
<label id="product_description_label" class="textarea_label" for="product_description">Description: </label>
<textarea id="product_description" class="input_textarea" rows="20" name="product[description]" input_type="textarea" cols="40"/>
<br/>
Select with Label
code
select_field_with_label :product, :product_type
produces
HTML Output
<label id="product_price_label" class="select_label" for="product_price">Price: </label>
<select id="product_price" class="input_select" name="product[price]">
<option value="699">699</option>
<option value="799">799</option>
<option value="899">899</option>
<option value="999">999</option>
</select>
<br/>