Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
454 views
in Q2A Core by
i just want to use logo image instead of text but i can't find the option for this.

1 Answer

0 votes
by
selected by
 
Best answer
Go to admin/layout

check  the first option and an input field appears

Thats it
by
Sure would be nice to have the option of HTML there so you can have an image AND text and other content with more control.
by
You can !
just make an advanced theme, what is very easy http://www.question2answer.org/themes.php#advanced
then open qa-theme-base.php in include folder, copy the logo function and modify it as You need it.

function logo()
        {
            $this->output(
                '<DIV CLASS="qa-logo">',
                $this->content['logo'],
                '</DIV>'
            );
        }

For example:

function logo()
        {
            $this->output(
                '<DIV CLASS="qa-logo"><p>my own text or something<p></DIV>'
            );
        }
...