PDA

View Full Version : Frames- get rid of tht line!


smartalecc5
04-12-2003, 04:02 AM
How do I get rid of the dividing line between the 2 frames? You can see the example at www.geocities.com/socomdelta2/main.html and the code is

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<FRAMESET COLS="20%,80%">
<FRAME SRC="l.html" name="l" frameborder="no">
<FRAME SRC="rightside.html" name="middle">
</FRAMESET>


<title>Socom: Dark Night Clan</title>


</head>

<body>
</body>
</html>

thickandthin
04-12-2003, 05:10 AM
<FRAMESET COLS="20%,80%" frameborder=0>
<FRAME SRC="l.html" name="l" >
<FRAME SRC="rightside.html" name="middle">
</FRAMESET>

cg9com
04-12-2003, 10:42 AM
I dont think you can use frameborder="" in a frameset element?
If im correct, border="" is for the frameset and frameborder="" is for a frame element.

smartalecc5
04-12-2003, 05:05 PM
thanks, the answer was border="0" in the frameset tags :)

cg9com
04-12-2003, 08:31 PM
anytime
:thumbsup: