How can I set the class for a <dt> element in a Zend_Form?
- by Mallika Iyer
I'm trying to set the width of the style for a group of < dt elements in a Zend_Form.
Is there a way to set a class for a dt element, so the end result would be something like this:
<dt id="name-label" class="xyz" > // trying to add the 'class="xyz"
<label class="required" for="name">Name:</label>
</dt>
<dd id="name-element">
<input type="text" maxlength="255" size="30" value="" id="name" name="name">
</dd>