Usually I would set up a send element by using the following
$question = new Zend_Form_Element_Text ("question");
$question->setLabel("Question")
->setAttrib('class', 'bob');
Here I have set a class around an element but how do I set it for the label instead?
From ZF Documentation: