Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
547 views
in Q2A Core by
reopened by
I want to remove  that "ask a question"  button from the search box.....so that search box alone get displayed....

Any one help me to acheive it

1 Answer

+3 votes
by
edited by
 
Best answer

Just add this code at the end of the qa-theme/SnowFlat/qa-styles.css file:

@media (max-width: 979px) {
    .qam-search.the-top#the-top-search {
        display: block;
    }
}
.qam-search-mobile, .qam-ask-mobile {
    display: none;
}
by
+1
It also works if you add it at the end of qa-theme/SnowFlat/qa-styles.css
by
+1
Right! That was an error in my answer :) In fact, it doesn't work if you add it to the theme file
...