|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
#1
|
|||
|
|||
|
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
|
|
#2
|
||||
|
||||
|
Won't work in all browsers, but this is one way:
Code:
html {
overflow-y: scroll;
}
Code:
html {
height:100%;
margin-bottom:1px;
}
Edit: more in next post
Last edited by Medyman; 05-23-2008 at 02:00 PM. |
|
#3
|
||||
|
||||
|
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;
}
|
|
#4
|
||||
|
||||
|
Quote:
Is width:100% really needed? --- Arie Molendijk. |
|
#5
|
||||
|
||||
|
Yes, for the non-modern variety browser.
|
|
#6
|
|||
|
|||
|
thanks for all your help
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|