View Full Version : scrollbar


orchid1
11-01-2003, 04:50 PM
how to disable horizontal scrollbar?

kicker91
11-01-2003, 05:59 PM
two ways:

in body tag put style="overflow-y:hidden;"


or in the <head> put:

<style type="text/css">
body {
overflow-y:hidden;
}
</style>

orchid1
11-01-2003, 06:36 PM
thanks! but it hidden the vertical one too. Are there anyway to just hidden the horizontal one?

toolman
11-01-2003, 06:59 PM
Try this:

<body style="overflow-x:hidden;y:scroll;">

kicker91
11-01-2003, 10:57 PM
oopsie! i always confuse y and x :blush: