View Single Post
Old 02-18-2007, 04:06 PM  
fallenmuffin
Confirmed User
 
fallenmuffin's Avatar
 
Industry Role:
Join Date: Nov 2005
Posts: 8,170
Quote:
Originally Posted by kandah View Post
I see many networks having a bar in the header of all their sites to allow easy access to the other sites in the network. Is there a script that handles this?

Example: http://www.gamerankings.com/itemrank...eviewid=760596

Okay so that bar is for a site out of the network for easy access back to the original site, but you get the idea.
The the example you just showed. It's an framed html document. For example:

launch.php
Code:
<frameset frameborder=0 framespacing=0 border=0 rows="100,*">
	<frame src="topframe.php" name="MainFrame" marginwidth=0 marginheight=0 scrolling=no noresize bordercolor="#FFFFFF">
	<frame src="$location" name="LinkFrame" bordercolor="#FFFFFF">
	<noframes>
		<body bgcolor="#FFFFFF" text="#000000">
		<p>Click on the link to proceed to <a href="$location" target=_top>$location</a>.
		</body>
	</noframes>
</frameset>
Where $location is where you want to send them and in topframe.* you can have your own header like they do.
fallenmuffin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote