I want to make the layout of a website, where i want the banner at the top and below it a line which is a status bar, and next to the status bar on the left hand side is a small icon.
Below this staus bar and icon is a menu, which is on the left hand side and one on the right hand side.
In the middle of these two menus is the main content box.
I wrote the following code, but when i veiw it i see the banner and the status bar with the icon but i do not see anything below it, i just see a blank white space.
<html>
<head>
<meta name="author" content="Website">
<title>mysite</title>
<frameset rows="58,*" cols="*" framespacing="0" frameborder="NO" border="0">
<frame src="TopBanner.htm" name="topFrame" scrolling="NO" noresize>
<frameset rows="23,*" cols="*" framespacing="0" frameborder="NO" border="0">
<frameset rows="*" cols="74,*" framespacing="0" frameborder="NO" border="0">
<frame src="MessageViewer.php" name="leftFrame" scrolling="NO" noresize>
<frame src="StatusBarNew.php" name="topFrame1" scrolling="NO" noresize>
<frameset cols="175,*,250" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
<frame name="leftFrame" src="p.php">
<frameset rows="68,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
<frame name="menu" src="menu.php" scrolling=no>
<frame name="content" src="home.php" marginwidth=20>
<frame name="right_side" src="rightside.php" scrolling=no>
</frameset>
</frameset>
</head>
<body bgcolor=#000000>
</body>
</html>
Please can anyone tell me where i am going wrong and point me in the right direction. Thanks