Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
672 views
in Q2A Core by
I have already expanded the site in the CSS, but can't figure out where I need to put my adsense code in order to have it right below the toolbar....

1 Answer

+4 votes
by
Use an advanced PHP theme, qa-theme.php should be something like this:

<?php

    class qa_html_theme extends qa_html_theme_base
    {
        function nav_main_sub()
        {
            qa_html_theme_base::nav_main_sub();
?>
YOUR HTML HERE
<?
        }
    }

?>
by
I feel it is better to have ad management feature.
like ad below main navigation, ad after all answers, ad after question etc
by
Good answer gidgreen. I was wondering about this myself. Thanks.
...