Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
598 views
in Q2A Core by

how can i remove this search box, it cause trouble in some mobile theme

 

2 Answers

0 votes
by

There are couple of way to do.

If you are using snow theme than easiest way to do is....

Find function function nav_user_search() in that

remove or comment qa_html_theme_base::nav_user_search();

instead of that add $this->nav('user');

and you done. Your serachbar should gone now.

0 votes
by
You need to edit the CSS (qa-styles.css) to add "display:none" to .qa-search properties. Not only is that the easiest way but you can also bring it back whenever you want by removing it.
by
This solution was tested and it works. The negative vote shouldn't be used in this case.
...