Is there a way to apply a CSS class to a label in Zend_Form?
Here is the HTML approach:
<dt><label for="foo" class="label-design">Foo</label></dt>
How do I achieve this using Zend_Form?
(I am familiar with writing labels, but unsure how to include a CSS class.
$model = new Zend_Form_Element_Text('model');
$model->setLabel('Model');
)
Thanks,