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

How do i remove only this box not search box for snowflat mobile theme?

Q2A version: 1.8.7

1 Answer

+1 vote
by
selected by
 
Best answer

Short answer:

Go to SnowFlat > qa-theme.php
Comment out or remove line 290:

// $this->output($this->ask_button());

Open SnowFlat > qa-styles.css
Paste this code at the end of the file:

@media (max-width: 980px) {
    .qam-search.the-top {
        display: block !important;
    }
}

Force browser refresh ( Ctrl+F5 / Cmd+Shift+R on Mac).

by
Thank you so much.
...