Question: How Do I Create A 3-Piece Webpage?

Reply

Join Date: Aug 2005
Posts: 16
Reputation: Brinnie is an unknown quantity at this point 
Solved Threads: 0
Brinnie's Avatar
Brinnie Brinnie is offline Offline
Newbie Poster

Question: How Do I Create A 3-Piece Webpage?

 
0
  #1
Aug 4th, 2005
I'm trying to make a link directory.
In short, It's going to have 9 categories and I want it to look like this:

_ _ _
_ _ _
_ _ _


At first, I made a 3x3 table. But when anyone submits a link, it breaks the whole thing. :shifty: You know?

If someone adds a link to the middle category... Enough of my n00bness already, I think you know what I'm saying.

Thank you.
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 182
Reputation: alpha_foobar is an unknown quantity at this point 
Solved Threads: 3
alpha_foobar's Avatar
alpha_foobar alpha_foobar is offline Offline
Junior Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #2
Aug 5th, 2005
Umm, i'm not really sure what your saying here. But I think the solution is to not use a 3x3 table. Try a 3x1 table instead.

i.e. COL1 COL2 COL3
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 17
Reputation: ProFreelance is an unknown quantity at this point 
Solved Threads: 0
ProFreelance ProFreelance is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #3
Aug 5th, 2005
I really don't understand either, but if you have a number of entry's not equal to a multiple of 3, you will have to calculate the left overs with the "mod" function if it is a dynamic webpage, and then add in an entry for the left over table datas <td>s.
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 20
Reputation: chrchcol is an unknown quantity at this point 
Solved Threads: 0
chrchcol chrchcol is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #4
Aug 5th, 2005
Well if I understand what you are trying to do you need to create a table. Create one table to lock your format and inside create another table that has three rows.
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 16
Reputation: Brinnie is an unknown quantity at this point 
Solved Threads: 0
Brinnie's Avatar
Brinnie Brinnie is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #5
Aug 5th, 2005
No no no, let me find similiar link page and I'll get back to you.
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 16
Reputation: Brinnie is an unknown quantity at this point 
Solved Threads: 0
Brinnie's Avatar
Brinnie Brinnie is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #6
Aug 5th, 2005
Ok, here's a similiar page:
http://www.art-bridge.com/directory/abdir.htm
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 17
Reputation: ProFreelance is an unknown quantity at this point 
Solved Threads: 0
ProFreelance ProFreelance is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #7
Aug 5th, 2005
Originally Posted by Brinnie
Ok, here's a similiar page:
http://www.art-bridge.com/directory/abdir.htm
Do you mean a webpage in the following format:
----------------------
|....|...........|...|
|....|...........|...|
|....|...........|...|
|....|...........|...|
|....|...........|...|
|....|...........|...|
----------------------

Where the red is one section, the blue is another, and the green is a third?

You should use Tables inside of Tables.

[PHP]<TABLE>
<TR>
<TD>
Column 1 Here
</TD>
<TD>
Column 2 Here
</TD>
<TD>
Column 3 Here
</TD>
</TR>
</TABLE>[/PHP]

You can replace column 1, 2, and 3 with more tables to hold information.

Column 2 could equal =
[PHP]<Table>
<tr>
<th>Table in the middle</th>
</tr>
<tr>
<td>Some information of the table</td>
</tr>
</Table>[/PHP]
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 182
Reputation: alpha_foobar is an unknown quantity at this point 
Solved Threads: 3
alpha_foobar's Avatar
alpha_foobar alpha_foobar is offline Offline
Junior Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #8
Aug 5th, 2005
So whats the issue when people add links?

But this page just uses lots of tables to structure everything... basically like this:

HTML and CSS Syntax (Toggle Plain Text)
  1. <table width="100%">
  2. <tr>
  3. <td width="150" bgcolor="black"><font color="white">left column</font></td>
  4. <td width="650" bgcolor="blue"><font color="white">center column</font></td>
  5. <td width="150" bgcolor="red"><font color="white">right column</font></td>
  6. </tr>
  7. </table>

And you can fill the cells in the table to add more levels of formatting...
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 16
Reputation: Brinnie is an unknown quantity at this point 
Solved Threads: 0
Brinnie's Avatar
Brinnie Brinnie is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #9
Aug 5th, 2005
well, alpha_foobar, I wanted to put a horizontal row of affiliates down the left side.
But when I tested it and added some links, it pushed the tables in the middle down.

So it's like, the ultimate goal is to have three collums- where changes made in 1 column do not effect the other 2.

Ya know?


I can design a mock-up in photoshop of what I'm going for if you guys have the patience to show me how to implement it.
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 17
Reputation: ProFreelance is an unknown quantity at this point 
Solved Threads: 0
ProFreelance ProFreelance is offline Offline
Newbie Poster

Re: Question: How Do I Create A 3-Piece Webpage?

 
0
  #10
Aug 5th, 2005
add this to the <td> tag for column 2,

HTML and CSS Syntax (Toggle Plain Text)
  1. <td valign=top>

That way when u add links to the left, the stuff in the middle stays top aligned.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the HTML and CSS Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC