Header site network bar

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • The Duck
    Adult Content Provider
    • May 2005
    • 18243

    #1

    Header site network bar

    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.
    Skype Horusmaia
    ICQ 41555245
    Email [email protected]
  • fallenmuffin
    Confirmed User
    • Nov 2005
    • 8170

    #2
    Originally posted by kandah
    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.

    Comment

    • The Duck
      Adult Content Provider
      • May 2005
      • 18243

      #3
      So I just include the file with the code where I want it?
      Skype Horusmaia
      ICQ 41555245
      Email [email protected]

      Comment

      Working...