View Full Version : Resizing/borders


Scaralyph
07-04-2003, 12:04 AM
Ohhkay, it's been a while since I used frames so I have no idea what I'm doing.

I'm using THIS code here...

<html>
<head>
<title>30</title>
</head>
<frameset rows="100*">
<frame src="top.html" NAME="top">
<frameset cols=20%,80% border=0 frameborder=0 framespacing=0>
<frame src="index.html" NAME="left">
<frame src="right.html" NAME="frame">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>

But I can't seem to get rid of the border or resize it. Anyone know why?

kittycat
07-04-2003, 12:51 AM
Change this:
<frameset rows="100*">
to this:
<frameset rows="100,*">

And see if that helps any... I can't find any other problems with the code.

Scaralyph
07-04-2003, 01:41 AM
Okay, I figured that out. Now if only I could get rid of the grey line..

http://raiven.net/index2.html

Can anyone even see that?

kittycat
07-04-2003, 02:03 AM
border=0 frameborder=0

Add that to the frameset rows bit, it should work.