|
the reason is if you make the page taller, than a scrollbar on the right appears so that they can scroll up and down
the problem is, the extra scrollbar makes the page a little skinnier, so a scrollbar at the bottom has to be added.
you can either make the page skinnier and keep the scrollbar there at all times, or use css to ensure a horizontal scrollbar never appears, but a tiny bit will be cut off once the vertical scrollbar appears.
always veritcal:
style="overflow-x: hidden; overflow-y: scroll;"
on and off:
style="overflow-x: hidden; overflow-y: auto;"
Last edited by Conquester777; 03-09-2006 at 04:29 AM..
|