Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
255 views
in Q2A Core by
Hi How can I remove Search box from Ask Page

many people are asking their question in the search box by mistake

1 Answer

+2 votes
by
selected by
 
Best answer

Add something like this to your theme's stylesheet:

.qa-template-ask .qa-search {
  display: none;
}

by
Thanks a lot, That worked well
...