Hi everyone,
I’m having a hard time switching the Pinoboard theme responsive-layout functionality for one of my sites. KuwaitStemcells.com
I’ve tried removing what I thought a responsive functionality related line
meta name="viewport" content="width=device-width, initial-scale=1.0"
and tired fixing the site widths by the prefixes (max and min).
Still the site fully responsive .. π
Any idea upon how to get this one done properly ?
If you remove that line the site will be responsive on desktop but static on mobile. If you want it static on desktop as well you will have to delete the @media
queries from style.css.
Hi Daniel, I love your theme its quite impressive.
I am trying to turn off a responsive layout by taking out the viewport meta tag and all the media queries, but a lot of the elements get resized regardless, such as the main navigation menu, content window etc…
Is there any easy way to make everything static size when it gets resized? (Essentially turning off responsive)
Add this to style.css:
#wrapper {
width: 1140px;
}
worked like a charm. thanks daniel!