Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
298 views
in Q2A Core by
I would like to completely disable anything mobile related and have a strictly fixed-width, static site. Is there some simple CSS or a PHP function to remove?

Couldn't find anything related to media queries or mobile in the default stylesheet, yet differing CSS is being injected for smaller screens somewhere/somehow.

Thanks
Q2A version: 1.5

1 Answer

0 votes
by

Snow theme doesn't have any media query yet. So there should not be any issue regarding media query. However if you mean by not allowing zoon on mobile device than you can try to add/modify device width meta tag in head section.

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

If this is not what you are looking than post some mroe and specific details

...