I have a div tag that scrolls is there a way to get rid of the side scroller (left to right) which I know I will never have a need for in the instance I am creating.
Thanks in advance. AJ
I would lose my head if it wasn't attached.
An IE only way to remove it would be to do:
overflow-y:scroll;
A cross-browser way would be to do:
overflow:auto;
but that will only display the side bar if there is need for it. You could overcome this problem by setting the height to 350px and adding a blank 1px by 1px image to the right of the text and streching it to 551px height.
Rick -----------------------------------------------------------
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.