How to remove scrollbar?
Permalink
Hello Everyone.
I m working for my client on a site, which got a static landing page, and somehow they want to remove the right-side scrollbar for that page.
I tried to add <body "SCROLLING="no" STYLE="overflow: hidden;">,
but it's not working with the <DOCTYPE!> defined. If i remove DOCTYPE declaration, the toolbar for page editing will mess up after login to backend, so any suggestions on this?
Thanks in advance!
Sam
I m working for my client on a site, which got a static landing page, and somehow they want to remove the right-side scrollbar for that page.
I tried to add <body "SCROLLING="no" STYLE="overflow: hidden;">,
but it's not working with the <DOCTYPE!> defined. If i remove DOCTYPE declaration, the toolbar for page editing will mess up after login to backend, so any suggestions on this?
Thanks in advance!
Sam
Forgot to mention, this only happens on IE, it's fine with FF and Chrome.
Set this in the beginning of your main.css
html {
overflow:hidden;
}
and it should work, I am working on a site that needs this too you can check it herehttp://www.intheframestudio.com/avi...
html {
overflow:hidden;
}
and it should work, I am working on a site that needs this too you can check it herehttp://www.intheframestudio.com/avi...
wow, this works perfectly!
Thanks very much!
Thanks very much!
If you want to only scroll A selection of your page, you can do this now:
http://www.concrete5.org/marketplace/addons/scrollbar/...
Some clients can be obsessed about not scrolling the whole page so this will make them happy.
http://www.concrete5.org/marketplace/addons/scrollbar/...
Some clients can be obsessed about not scrolling the whole page so this will make them happy.