Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+6 votes
1.3k views
in Q2A Core by
reshown by
Q2A version: 1.5

2 Answers

+7 votes
by
edited by
 
Best answer

Add this to your custom theme:

        function doctype()
        {
            qa_html_theme_base::doctype();
            if(isset($this->content['a_form'])) {
                $a_form = $this->content['a_form'];
                unset($this->content['a_form']);
                $this->content['a_form'] = $a_form;
            }
        }

by
Hi NaohY

will these changes required in qa-page-question.php
by
No, just create a custom layer, or put it in your theme's qa-theme.php file.
by
Thank you for nice clue !
by
Thanks NaohY, It really worked...
asked Apr 16, 2012 in Q2A Core by anonymous How to do it by making a advance theme ?
by
@NoahY but one problem bro...when i comment though that box the answer going to top of all other answer first..i know when refresh the page it will come under all...but after commenting  how can i make that all under other answers???
by
qa-content / qa-question.js
line 98


l.insertBefore(c, l.firstChild);
to
l.insertBefore(c, l.lastChild);
by
the only thing I noticed with this though is if you have your admin settings in admin>viewing>show answer form immediately set to Always.. when you click on the "answer" link in the original post.. it hides the answer box instead of moving the user to that section of the page.. if you click it again.. it then moves the user down
+1 vote
by
I believe you need to create an advanced-theme.

I'm almost positive you want to modify qa-include/qa-page-question-view
You can modify the layout in your advanced theme.  Otherwise very simple updates will always break your changes.
by
Thanks. Do you know which function I should override in my advanced theme?
...