View Full Version : can anybody help me with this code?


jenners2003
07-06-2003, 02:57 AM
i want another frame thing on my site (a right frame) but everytime i do it it screws up the whole thing! my site i www.lj-dolls.tk can u give me the code with the same border thing but with a right frame? thanx!

pb&j
07-06-2003, 07:32 AM
try this...

<html>
<head>
<title>My Page</title>
</head>
<frameset rows="100,*"border="0" frameborder="0" framespacing="0">
<frame src="top.html" NAME="top" style="border: 10px dotted #CC00FF;">
<frameset cols="160,*,160" border="0" frameborder="0" framespacing="0">
<frame src="left.html" NAME="left" style="border: 10px dotted #CC00FF;">
<frame src="home.html" NAME="main" style="border: 10px dotted #CC00FF;">
<frame src="vote.htm" NAME="right" style="border: 10px dotted #CC00FF;">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>