Here is a screen shot of what i would like to achieve:
The top section (header) will just display an banner image. The main section needs to be split into two frames (one for the menu and the other for the main page.
Here's the code for the header(banner). [I've created a rounded rectangle in photoshop & have sliced them up as top_left.jpg, top_middle.jpg etc...]
The header (banner) works fine. Now i would like to do the same for the main content. However, my main body displays two frames ie., menu.html and main.html. How can I do this?
<table>
<tr>
<td><img src="top_left.jpg" height="20" width="20"/></td>
<td><img src="top_middle.jpg" height="20"/></td>
<td><img src="top_right.jpg" height="20" width="20"/></td>
</tr>
<tr>
<td><img src="middle_left.jpg" width="20"/></td>
<td>Insert frames here</td>
<td><img src="middle_right.jpg" width="20"/></td>
</tr>
<tr>
<td><img src="bottom_left.jpg" height="20" width="20"/></td>
<td><img src="bottom_middle.jpg" height="20"/></td>
<td><img src="bottom_right.jpg" height="20" width="20"/></td>
</tr>
</table>
Any suggestions/ideas ?
The top section (header) will just display an banner image. The main section needs to be split into two frames (one for the menu and the other for the main page.
Here's the code for the header(banner). [I've created a rounded rectangle in photoshop & have sliced them up as top_left.jpg, top_middle.jpg etc...]
Code:
<table>
<tr>
<td><img src="top_left.jpg" height="20" width="20"/></td>
<td><img src="top_middle.jpg" height="20"/></td>
<td><img src="top_right.jpg" height="20" width="20"/></td>
</tr>
<tr>
<td><img src="middle_left.jpg" width="20"/></td>
<td><img src="banner.jpg"/></td>
<td><img src="middle_right.jpg" width="20"/></td>
</tr>
<tr>
<td><img src="bottom_left.jpg" height="20" width="20"/></td>
<td><img src="bottom_middle.jpg" height="20"/></td>
<td><img src="bottom_right.jpg" height="20" width="20"/></td>
</tr>
</table>
The header (banner) works fine. Now i would like to do the same for the main content. However, my main body displays two frames ie., menu.html and main.html. How can I do this?
<table>
<tr>
<td><img src="top_left.jpg" height="20" width="20"/></td>
<td><img src="top_middle.jpg" height="20"/></td>
<td><img src="top_right.jpg" height="20" width="20"/></td>
</tr>
<tr>
<td><img src="middle_left.jpg" width="20"/></td>
<td>Insert frames here</td>
<td><img src="middle_right.jpg" width="20"/></td>
</tr>
<tr>
<td><img src="bottom_left.jpg" height="20" width="20"/></td>
<td><img src="bottom_middle.jpg" height="20"/></td>
<td><img src="bottom_right.jpg" height="20" width="20"/></td>
</tr>
</table>
Any suggestions/ideas ?