| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #2 (permalink) |
| Senior Member Join Date: Aug 2002
Posts: 1,255
![]() ![]() | A few ways that I know of. <body scroll="no"> You could change no to auto <body style="overflow:hidden;"> You could change hidden to auto You can add it in the body section of your style sheet: body { overflow:hidden; } I think the overflow:hidden; will disable horizontal and vertical scrolling. I don't know if the <body scroll="no"> will disable horizontal scrolling also or not. I'm not sure how you disable vertical or horizontal scrolling separately. |
| |
| | #3 (permalink) |
| First Time Poster! Join Date: Jun 2004 Location: Florida
Posts: 1
![]() | I'm not sure, but in some of my comings and goings with the CSS overflow attribute, I found that you can specify the x or y axis, or the vertical and horizontal. So you should try using overflow-y: auto , overflow-x: auto , etc.
__________________ Anything of wealth is worth working for. |
| |