In drual 7 my forms are outputting like this
<label for="edit-panes-billing-billing-first-name"><span class="form-required">(*)</span> First name</label>
The problem being the form-required indicator goes at the front. I cannot find the hook. I need to either
I need to change the html order or wrap a span around the text part so the output is
<label for="edit-panes-billing-billing-first-name"><span class="form-required">(*)</span> <span class="mytitle">First name</span></label>