You need to make a custom theme: http://www.question2answer.org/themes.php .
Put such a function in your theme class and modify it as you want:
function header()
{
$this->output('<DIV CLASS="qa-header">');
$this->logo();
$this->nav_user_search();
$this->nav_main_sub();
$this->header_clear();
$this->output('</DIV> <!-- END qa-header -->', '');
}
You can override other methods :
function logo()
{
$this->output(
'<DIV CLASS="qa-logo">',
$this->content['logo'],
'</DIV>'
);
}
...and so on.