I am having trouble with one of my frames not showing up. This isn't necessarily pertaining to PHP, but I know you guys are great at helping giving pointers.
I have a website that uses frames (top, left, main, and bottom). On some of the sites, the bottom frame is visible, and on others it just isnt there, even though the code shows it to be there?
What could be going wrong? I listed below the content of the index page that contains the frame information of a working and non-working one. To me they appear the same, and i have tried swaping all the portions of the good and bad. This isn't the first time this has happened to me, so I am sure others out there have had similar troubles and can point out the flaw.
Here is the one that doesn't work:
<html>
<head>
<title>bottom not showing up**</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows=",40" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" rows="">
<frameset cols="156," frameborder="NO" border="0" framespacing="0">
<frame name="left" scrolling="NO" noresize src="benefits_nav.html" marginwidth="0" marginheight="0">
<frameset rows="50," frameborder="NO" border="0" framespacing="0">
<frame name="top" scrolling="NO" noresize src="../backups/topnav.html" marginwidth="0" marginheight="0" >
<frame name="main" src="main.html">
</frameset>
</frameset>
</frameset>
<frame name="bottom" scrolling="NO" noresize src="../bottomnav.html" marginheight="0" marginwidth="0">
</frameset>
<noframes><body bgcolor="#FFFFFF">
</body></noframes>
</html>
here is a working one:
<html>
<head>
<title>**working one**</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows=",40" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" rows="">
<frameset cols="156," frameborder="NO" border="0" framespacing="0">
<frame name="left" scrolling="NO" noresize src="chapters_nav.html" marginwidth="0" marginheight="0">
<frameset rows="50," frameborder="NO" border="0" framespacing="0">
<frame name="top" scrolling="NO" noresize src="../backups/topnav.html" marginwidth="0" marginheight="0" >
<frame name="main" src="main.html">
</frameset>
</frameset>
</frameset>
<frame name="bottom" scrolling="NO" noresize src="../bottomnav.html" marginheight="0" marginwidth="0">
</frameset>
<noframes><body bgcolor="#FFFFFF">
</body></noframes>
</html>