i want to add span after question title in the following function of qa-theme-base file
how to do this
function q_item_title($question)
{
$this->output(
'<DIV CLASS="qa-q-item-title">' ,
'<A HREF="'.$question['url'].'">'.$question['title']. '</A>' ,
'</DIV>'
);
}
i have tried this
'<A HREF="'.$question['url'].'">'.$question['title']. '<span class"toolip">' .$question['title']. '</span> ' '</A>' ,
but this show error
please help me out.