Hi, I have the nonzero template as a baseline for my blog with 3 columns, floating. On the desktop monitor the site looks just fine, but on the smartphone the first main column becomes too small so that the design. gets screwed over.
the url of my blog: http://freiundquer.de
Any idea what I couls do?
Thanks!
I finally solved it. In style.css one has to add the following code:
html, body
{
min-width:1000px;
max-width:1900px;
overflow:auto;
}
Of course, the numbers can be adjusted.