Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
791 views
in Plugins by

There are two ask box in SnowFlat theme in mobile devices or other small devices:

Please hide ask box widget in SnowFlat theme for small devices.

Q2A version: 1.7.1
by
you have got a nice point...

1 Answer

+1 vote
by
edited by

Yes this is a good point. I think we should probably just remove the green "ask a question" button, I'm not sure it really makes sense - you can of course use the menu to ask a question, if you don't have the quick ask box.

Then we can use the regular search box instead of having it in a dropdown.

 

To answer your question directly, it's possible to hide the ask box on mobile using the following CSS:

@media (max-width: 979px) {
  .qa-ask-box {
    display: none;
  }
}

 

by
Thank you for your answer. In my opinion the green "ask a question" button is really beautiful! and its search box is interesting. Is it possible just to hide the blue ask box for small devices?
by
The main point for have an "Ask a Question" button is, when we do not use ask box widget then users on mobile will not be able to understand how to reach to Ask Page. Ask button should always be in front rather than hidden in menu (talking for mobile view only).
by
@fara I updated my answer for your specific question.
by
@Scott
Thanks.
...