PDA

View Full Version : removing scroll bars



carl_00
July 29th, 2003, 06:03 PM
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

nobody
July 29th, 2003, 06:11 PM
make your body tag say

<body scroll="no">

carl_00
July 29th, 2003, 07:17 PM
thanks for that it worked but it looks like it is tiling my background image

replode
July 29th, 2003, 07:21 PM
well if you have


<body bg="image.gif">

then its going to tile that image. :cool:

JMS
August 5th, 2003, 11:03 AM
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
JMS Media