View Full Version : frames code(no resizing)


Mollygymn
03-08-2003, 07:39 PM
I want to have a left and top frame and I know I would use this code:
<html>
<head>
<title>page title</title>
</head>
<frameset cols="216,*">
<frame src="left.html" name="left">
<frameset rows="105,*">
<frame src="top.html" name="top">
<frame src="right.html" name="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>

But I want to make it so it doesn't have frame borders and so you can't scroll or resize. I know that for a frame set when all the frames are going the same way(like rows) that I would put in this code:
<frameset cols=20%,80% border=0 frameborder=0 framespacing=0>
But since I have both rows and columns what would the code be? Thanks!!

pb&j
03-08-2003, 07:54 PM
You can add that... border=0 frameborder=0 framespacing=0 to your current frameset tags as well to do the border elimination thing.

Then add... noresize="noresize" into your FRAME tags to kill the resizing capabilities.