Hide the scrollbar!
- Started
- Last post
- 8 Responses
- Dno
anyone know the code for hiding the browser scroll bars in dreamweaver please?
I have a page that even though the content fits 800x600 it is still showing scrollbars when you preview in browser/s
Any ideas?
;)
- 899prod0
does it fit 790x590 though. that always solved this for me in the past i think. or am i imagining a scroll=0 attrib that you can put in body? haven't touched html in a little while.
- Dno0
I've tried using 90% etc... but that doesn't solve it!
be grateful for any pointers about the scroll=0 thing though
;)
- kodap0
in css :
body{ overflow:hidden;}
or 'auto' if content goes further the bounds
- stewart0
in the body tag: scroll=no
but IE only, isn't it?
- 899prod0
"but IE only, isn't it? "
i'm remembering why i don't touch websites much anymore.
- blaw0
kodap's got it.
http://www.w3schools.com/css/pr_…
- Dno0
...cheers for the help - just what the dr ordered!
:))
- fifty500
I always remembered building sites in dreamweaver and wondering why there's still a scrollbar there, then i realized in my code that there's a phantom [p][/p] tag at the end. Then i stopped using dreamweaver and started coding by hand.