Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
691 views
in Q2A Core by
Since what is shown is determined by the long method qa_content_prepare in qa-page.php, I do not see a clean way to do that... except include my title in my logo which is what I might end up doing!
 

Anyhow, having both would be an interesting option I think.

1 Answer

0 votes
by

It would probably be best to use an advanced theme. Override whichever function it is that displays the site header and add your logo in there.

by
Yeah, I've already look into that. Here's the function that actually insert the logo (or tiltle depending on what was put into content):
function logo()
        {
            $this->output(
                '<DIV CLASS="qa-logo">',
                $this->content['logo'],
                '</DIV>'
            );
        }

What this table return depend on what was decided to be inserted by the admin. I guess I could just ignored the parameter and insert both in the logo() fucntion... but this feel a bit like a hack!
...