When the screen size allows it, my menu bar is fixed on the left side of the page.
@media (min-width: 900px) {
#menu {
position: fixed;
}
}
But when viewed on a smartphone for example, using the pinch zoom will make the menu zoom with the content and collide with the rest of the page. Can this be avoided with something like a @media zoom-capable
kind of query?
Clarification: What I'm after is this - menu is fixed on computer screens but normal/default on screens that allow finger zooming. Using cmd plus/minus to enlarge the page on a desktop computer isn't a problem.