I find these code in qa-theme.php in Snow theme:
function header_custom() // allows modification of custom element shown inside header after logo
{
if (isset($this->content['body_header'])) {
$this->output('<DIV CLASS="header-banner">');
$this->output_raw($this->content['body_header']);
$this->output('</DIV>');
}
}
It seems that we can set the 'body_header' to add HTML content in the banner beside the logo. But I can not find the options in the 'Admin' panel to set it.
Did I miss something?