Shifting Page Content Right When Scroll Bar Becomes Visible?
Is it possible using jQuery to shift the content of a page say 10px to the right when the scroll-bar becomes visible. The reason it isn't automatically visible is because my conten
Solution 1:
You could use CSS to force the scrollbar to always be visible:
body { overflow-y: scroll; }
Post a Comment for "Shifting Page Content Right When Scroll Bar Becomes Visible?"