Apache539
04-06-2003, 08:24 PM
Hi,
I am trying to create a top frame with no border but it won't work.
When I try to put in this code <frameset cols=20%,80%> then it moves the top frame to the left side.
I don't know how to fix it.
thanks for any help.
Apache
www.apache539.com/apache/index.htm
Dude128
04-06-2003, 08:39 PM
change it to <frameset rows...
Apache539
04-06-2003, 08:47 PM
I do have it set to rows but in Lissa's frame help it says to get rid of borders use col but when I do that it moves the frame to the left side.
here is the code I'm using:
<html>
<head>
<title>My Page</title>
</head>
<frameset rows=20%,80%>
<frame src="top.htm" name="top">
<frame src="bottom.htm" name="bottom">
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
Dude128
04-06-2003, 08:57 PM
Lissa's code is an example, since she can't possibly post every single combination of codes. just take what you want of the code for no borders, and customize it- with you own heights, rows instead of cols, etc.
Apache539
04-06-2003, 09:07 PM
sorry but I don't understand. Can you tell me the code I should use for no borders?
thanks for your help.
Dude128
04-06-2003, 09:09 PM
<frameset rows=20%,80% border="0" frameborder="0" framespacing="0">
<frame src="top.htm" name="top">
<frame src="bottom.htm" name="bottom">
Apache539
04-06-2003, 09:12 PM
Hi, that worked! :) thanks so much