Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
3.3k views
in Q2A Core by

 




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?
Q2A version: 1.5.4

1 Answer

0 votes
by
edited by
 
Best answer

I figured it out by checking the HTML code.

It is actually the "Custom HTML at top of every page" in the "layout" control panel. The name is a little bit misleading.

The Snow theme works great with banner ads besides the logo. Here is an example: http://ask.fclose.com/tag/q2a

...