Removing scroll bars

how do i remove scrollbars from the browser window i know its html or javascript code but i dont know what to type in and where to type it;/

thanks

make your body tag say

<body scroll="no">

thanks for that it worked but it looks like it is tiling my background image

well if you have

<body bg="image.gif">

then its going to tile that image. :cool:

If you dont want a background image to tile, set up a stylesheet in your page to redefine the BODY tag like so:


&lt;style type="text/css"&gt;
&lt;!--
BODY {
	background-image: url(/path/to/image/background.gif);
	background-repeat: no-repeat;
}
--&gt;
&lt;/style&gt;

Hope that helps.

Cheers

Julian
[SIZE=1]JMS Media[/SIZE]