Author |
Topic  |
|
kygentleman
Starting Member
6 Posts |
Posted - 10 May 2001 : 08:45:12
|
I wnt to design a page that uses tables to control layout. similar to the front page of snitz but i want the top and left table to stay the same across the site with the content changing in center, (#include?) but how? What code goes with what page. I am new to asp but have some exp. with html. Any help would be appreciated
|
|
SweSob
Starting Member
22 Posts |
Posted - 10 May 2001 : 15:03:43
|
What you want is frames. A top frame, a main frame.
Links gets called and opens in the main frame while the top stays the same throug out the site.
Here's a simpla code (this can easly be done in Macromedia Dreamweaver or Frontpage, whatever u use)
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0"> <frame name="topFrame" scrolling="NO" noresize src="C:\UntitledFrame-2.htm" > <frame name="mainFrame" src="C:\Untitled-1.htm"> </frameset>
I hope this is what you where seeking for.
|
 |
|
e3stone
Average Member
  
USA
885 Posts |
Posted - 10 May 2001 : 15:21:00
|
No offense, your frame theory will work, but I hate frames. I'm not sure what Kygentleman means by "staying the same across the site" do you want the center section to be scrollable? if that is the case then you'd have to use frames. But, here is a way to layout your page with tables and all the sections would scroll together quote: <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="2">### top include goes here ###</td> </tr> <tr> <td>### left include goes here ###</td> <td>### center section code goes here ####</td> </tr> </table>
hmmm, but i'm not sure how to apply it to the forum. You'd probably have to go through and change all your pages individually...grrr, that would be a pain in the rear
<-- Eric --> 
http://insidewaco.com/forum/home.asp |
 |
|
kygentleman
Starting Member
6 Posts |
Posted - 10 May 2001 : 16:47:24
|
e3stone, this is exactly what I want to do. The things i want to put into the side colum are the basic MOD lead in, like the logon boxes, poll or the calendar maybe the active users. TIA
Edited by - kygentleman on 10 May 2001 16:48:25 |
 |
|
|
Topic  |
|