View Full Version : very weird.. trying to get rid of scrollbar on my frames


auds
02-16-2003, 04:53 PM
On some of my pages, the scrollbar STILL does not disappear even when I insert scrollbar=no into the frames code.

MaGiCSuN
02-16-2003, 05:00 PM
can you show me some example of it online?

thanks

love.
mirna

Sheila
02-16-2003, 05:32 PM
Just remember that when using the no scrolling code, people with small screens won't be able to view all of your site.

<html>
<head>
<title>marilyn ten tyler</title>
</head>
<frameset cols=40%,60% frameborder=0 framespacing=0>
<frame src="left.txt" name="leftside" scrolling=no>
<frame src="right.txt" name="rightside" scrolling=no>
</frameset>
<body>
</body>
<noframes>
<a href="asd">Click Here</a>
</noframes>
</html>

bejayel
02-17-2003, 12:48 AM
instead of using a scrolling=no use a scrolling=auto. this is make it so that the scrollbar will appear only when needed!

<html>
<head>
<title>marilyn ten tyler</title>
</head>
<frameset cols=40%,60% frameborder=0 framespacing=0>
<frame src="left.txt" name="leftside" scrolling="auto">
<frame src="right.txt" name="rightside" scrolling="auto">
</frameset>
<body>
</body>
<noframes>
<a href="asd">Click Here</a>
</noframes>
</html>