Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
627 views
in Q2A Core by
How Add facion.ico for my question2answer script ?

Please help me

2 Answers

0 votes
by

should be favicon.ico, no? If so, just put a proper favicon into your site's root directory:

mysite.com/favicon.ico

Note that not just any image will do... I get my favicons made here:

http://tools.dynamicdrive.com/favicon/

 

0 votes
by

Assuming you mean favicon.ico, you can do what NoahY suggested and put the icon at /favicon.ico.

You should also add a meta tag pointing to the icon:

<link rel="shortcut icon" href="/favicon.ico">

You can add this code in a custom theme. If you don't already have a theme, copy the "Default" folder in qa-theme then create a file qa-theme.php with this content:

<?php
class qa_html_theme extends qa_html_theme_base
{
    function head_custom()
    {
        parent::head_custom();
        $this->output('<link rel="shortcut icon" href="/favicon.ico">');
    }
}

 

...