I was wondering if anyone knows how to make multiple frames appear as if they are just different tables one page, I can't find any values or attributes to let me do it, but I remember sites which allow it. I know how to make the frames scroll separately but not how to make them do it so the top frame will scroll out of view as if they were attached and not really frames.
code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>TEN YEAR PROSPECT</title>
</head>
<frameset rows="270,*" frameborder="no" border="0" framespacing="0" scroll="yes">
<frame src="header.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame"
title="topFrame" />
<frame src="news.html" name="mainFrame" scrolling="No" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
That's the code I've got - Is the solution complicated, or is there a simple attribute I've over looked??
EDIT:
Infact, i want it to look like it does now:
www.tenyearprospect.com - but it's only one page at the moment.
I need to convert it into frames to keep the music player working while switching tracks, and when I do that it either doesn't scroll at all, or the bottom frame will scroll while the top one remains static.
Thank you if you can help!