PDA

View Full Version : Stop the firefox jump


bruderd
06-17-2008, 01:26 PM
If any of you have experienced any horizontal jump in your CSS pages while using Zoom or perhaps even when not using it...there is a fix you can add to your style sheet that eliminates the problem.

html {
overflow-y: scroll;
}


OR:


html {
overflow: -moz-scrollbars-vertical; /* Always show scrollbar */
}

Either I have found will do the trick.

Ray
06-18-2008, 01:38 AM
Thanks for the tip. The sideways scrolling behaviour is not directly related to Zoom. It depends on the page layout. If you have Zoom search results within a CSS layout that stretches and doesn't allow the browser to wrap properly, then it may occur. It is really a rendering/CSS issue with the browser in question. But nonetheless, this may be helpful for people.