ok basicly what im trying to do is get the header of my site on top, then the framed affiliate link and then once some1 scrolls to the bottom of that framed page id like the footer to be displayed, currently it shows the header and footer all the time, i dont want the footer to show unless some1 scrolls to the bottom.
also right now when some1 clicks a link on the header frame, it just loads that link in the header, how can i get it so that if they click that link it will take them to that site instead of that site just being in the header frame?
hope that makes sense, anyways heres what i got so far
also right now when some1 clicks a link on the header frame, it just loads that link in the header, how can i get it so that if they click that link it will take them to that site instead of that site just being in the header frame?
hope that makes sense, anyways heres what i got so far
PHP:
<FRAMESET rows="15%, 65%, 17%" border="0">
<title>title</title>
<frame src="headertop.php" name="mainFrame" scrolling="no" noresize>
<frame src="framedpage.com" name="midFrame" scrolling="verticle" noresize>
<frame src="footerbottom.php" name="footerFrame" scrolling="no" noresize>
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them. <a href="framedpage.com">Click here to visit the link without frames</a></p>
</body>
</noframes>









