Stefan

msg:939874 | 1:48 am on Jan 19, 2006 (gmt 0) |
Not sure about Frontpage (never used it), but if you have these attributes in the table "border=0 cellspacing=0 cellpadding=0",you should have the whole works available. It's probably that way by default unless you specify a border or whatever, but I'm not 100% on that. Take a look at the Frontpage html code with Notepad.
|
Corey Bryant

msg:939875 | 3:57 pm on Jan 19, 2006 (gmt 0) |
Embedding tables is never really a good idea (browser issues). You can do it but you would need to use styles to float one of the tables to the left preferably. I would just use the cells. -Corey
|
pageoneresults

msg:939876 | 4:01 pm on Jan 19, 2006 (gmt 0) |
| I use Front Page and frequently have tables within tables. If I have a large TABLE of 100 pixels wide, can I insert two smaller tables of 50 pixels each, or does each side of each table take up pixel spaces as well that I must allow for when inserting the two smaller tables? |
| I would go with Corey's suggestion and manage cells rather than tables within tables. Many times, people nest tables to achieve certain border/visual effects. While this is visually appealing, it creates an html nightmare and causes problems with some browsers. In working with cells to achieve what you want, you'd end up with something like this... <table border="0" width="100"> <tr> <td width="50"> </td> <td width="50"> </td> </tr> <tr> <td width="50"> </td> <td width="50"> </td> </tr> </table>
|
rock007

msg:939877 | 2:44 pm on Jan 20, 2006 (gmt 0) |
Great suggestions! I will try them. -Rocky
|
Yukitenshi

msg:939878 | 10:28 pm on Feb 3, 2006 (gmt 0) |
Additonal note: Remember to add "cellpadding="0" and cellspacing="0" to the table tag, otherwise they will be set to a value of "1" by default. :) So .. <table border="0" cellpadding="0" cellspacing="0" width="100">
|
rock007

msg:939879 | 4:15 pm on Feb 6, 2006 (gmt 0) |
Thank you. I will. -Rocky
|
normaldude

msg:939880 | 4:40 pm on Feb 6, 2006 (gmt 0) |
<table border="0" width="100"> <tr> <td width="50"> </td> <td width="50"> </td> </tr> <tr> <td width="50"> </td> <td width="50"> </td> </tr> </table> |
| The way I would do it.. - I would recommend using percentages for the inside cells. That way, if you resize the outside table width to 150 or 75, the inside cells resize automatically. I often do this with whole web pages, where there's one outside table that's 730 pixels wide, and all the other nested cells & tables are based on percentages. - You only need to designate the "width" attribute for the first row of cells. Those width values will automatically propagate the the other rows. - I think it's a good idea to use comments to designate the matching starting and ending table tags. That way, as you have more & more nested tables, you know which tag matches which. So my modified version would be.. <!--- START: 2 Column Table Example ---> <table width="100" cellspacing="0" cellpadding="0" border="0"> <tr> <td width="50%"> </td> <td width="50%"> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> <!--- END: 2 Column Table Example --->
|
rock007

msg:939881 | 4:50 pm on Feb 6, 2006 (gmt 0) |
Great info! Thanks. -Rocky
|
|