R
Rahul
I was used to adding a navbar for navigation etc. by including a standard
snippet within <body> tags like so:
###################
<head>
<link href="topbar.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include("navbar.html"); ?>
foo content
</body>
###################
But apparantly framesets cannot go within body tags. One of my new
webpages has four charts on it like so:
http://dl.dropbox.com/u/118481/debug_frames.jpg
############
<html>
<frameset rows="50%,50%">
<frameset cols="50%,50%">
<frame src="euclid_jobs_waittimes.html" />
<frame src="euclid_historic_cpuhrs_share.html" />
</frameset>
<frameset cols="50%,50%">
<frame src="euclid_jobs_servers.html" />
<frame src="euclid_jobs_runtimes.html" />
</frameset>
</frameset>
</html>
################
But now I am lost as to how I can still include the navbar. I can't
figure out how to combine frames and a html navbar that needs the <body>
tags. Any tips?
snippet within <body> tags like so:
###################
<head>
<link href="topbar.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include("navbar.html"); ?>
foo content
</body>
###################
But apparantly framesets cannot go within body tags. One of my new
webpages has four charts on it like so:
http://dl.dropbox.com/u/118481/debug_frames.jpg
############
<html>
<frameset rows="50%,50%">
<frameset cols="50%,50%">
<frame src="euclid_jobs_waittimes.html" />
<frame src="euclid_historic_cpuhrs_share.html" />
</frameset>
<frameset cols="50%,50%">
<frame src="euclid_jobs_servers.html" />
<frame src="euclid_jobs_runtimes.html" />
</frameset>
</frameset>
</html>
################
But now I am lost as to how I can still include the navbar. I can't
figure out how to combine frames and a html navbar that needs the <body>
tags. Any tips?