On page load i want to make my scroll bar visable status on... even though scroll is required or not.. '
its urgent i hope i can get the solution today..
regards,
ravi.m![]()
On page load i want to make my scroll bar visable status on... even though scroll is required or not.. '
its urgent i hope i can get the solution today..
regards,
ravi.m![]()
Won't work in all browsers, but this is one way:
Another way:Code:html { overflow-y: scroll; }
These are both CSS styles. They should be added within <style> tags in the <head>Code:html { height:100%; margin-bottom:1px; }
Edit: more in next post
Last edited by Medyman; 05-23-2008 at 01:00 PM.
I may have misunderstood you. I mistook "visable" for visible though now reading the title, I guess you meant "disable".
To "disable" the scrollbar, you would add the following CSS:
Code:html,body { height:100%; width:100%; overflow:hidden; }
thanks for all your help
Bookmarks