Results 1 to 7 of 7
Thread: no scrollbar in HTML page help
-
September 17th, 2003, 09:43 AM #1
no scrollbar in HTML page help
hay there
I'm very bad in HTML so consider that
I want to run some HTML page in fullscreen mode, I manage that but still on right side there is vertical scrollbar.
So I read that I need to put SCROLL="no" in BODY tag. I do that and still there it is ?!?
What am I doing wrong ?? I just copy/paste SCROLL="no" in body tag and nothing happens...
If someone can help me with HTML syntax I'll appreciate that
tnx,
Bojan_bojan
-
September 17th, 2003, 10:02 AM #264JMS Media
postsscroll="no" is correct. However it only works in IE
-
September 17th, 2003, 12:04 PM #3
Don't know why but I can't paste HTML code here so I attached file.
Please just put it on right place and send it back to me.
I put it in BODY tag and I get only text in browser 'scroll="no"'. As I mentioned, I'm novice in HTML
thanks in advance,
Bojan_bojan
-
September 17th, 2003, 01:52 PM #4
Ok, as a note, the majority of web viewers despise full screen windows so it is usually recommend that if you have a full screen you should also supply an option for normal window.
As for removing the scrollbar. scroll="no" does only work in IE, but there is a CSS method that works in both IE and Netscape (which means it works in Mozilla and Firebird as well)
You would need to add this code anywhere in between the <HEAD></HEAD> tags of your HTML document.
PHP Code:<STYLE TYPE="text/css">
<!--
body {overflow: hidden};
-->
</STYLE>
-
September 17th, 2003, 10:46 PM #564JMS Media
postsnice one, that CSS way is cool
if you just want to do the scroll=no format do this
PHP Code:<body scroll="no">
-
September 18th, 2003, 05:27 AM #6
tnx to all, it works
_bojan
-
February 24th, 2012, 01:32 PM #7justduden/aGuest
postsThanks !!!

Reply With Quote

Bookmarks