Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Page jumps horizontally in Firefox and IE 8 Re: Page jumps horizontally in Firefox and IE 8

#59298
apostrophe
Participant

What’s happening is a scrollbar appearing on the longer pages with more content. All you need to do is force a scrollbar to appear on all pages. Just add this to your css:

Code:
html {
overflow-y: scroll;
}