Lissa Explains it All:  Web Design Forums  

Go Back   Lissa Explains it All: Web Design Forums > LEIA Archives > Web Site Help > Tables

Notices

 
 
Thread Tools Display Modes
  #1  
Old 04-10-2005, 06:54 PM
friendly37 friendly37 is offline
Script Kiddie
 
Join Date: Nov 2004
Posts: 100
friendly37 is on a distinguished road
separate tables

hello every body here

i made 3 tables vertically . I want just to separate them. they are too close to each other.

thank you
  #2  
Old 04-10-2005, 06:58 PM
pb&j's Avatar
pb&j pb&j is offline
phantom
 
Join Date: Dec 2001
Location: lurking about
Posts: 9,998
pb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to all
if you are using a larger table to hold the 3, then just add cellpadding or cellspacing to the outer TABLE tag.
__________________
phantom of the forum! mwa-ha-ha!
  #3  
Old 04-10-2005, 07:08 PM
friendly37 friendly37 is offline
Script Kiddie
 
Join Date: Nov 2004
Posts: 100
friendly37 is on a distinguished road
not understand

please give me how to separate, give me codes or something .

I have no idea
  #4  
Old 04-10-2005, 07:32 PM
pb&j's Avatar
pb&j pb&j is offline
phantom
 
Join Date: Dec 2001
Location: lurking about
Posts: 9,998
pb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to all
show us what you have so far. we cant fix your coding if we dont see it.
__________________
phantom of the forum! mwa-ha-ha!
  #5  
Old 04-10-2005, 07:57 PM
friendly37 friendly37 is offline
Script Kiddie
 
Join Date: Nov 2004
Posts: 100
friendly37 is on a distinguished road
this is the page

thank you

this is the page

www.whereinfo.org/shtml1.shtml

these are my 3 tables beginning

table one on the left:
<table
align="left" width="20%" border="3" bgcolor="fff8dc" height="100%">

table two in the middle:
<table align="adjust" bgcolor="white" width="50%" height="100%">


table three on the right:

<table align="right" width="20%" border="3" bgcolor="fff8dc" height="100%">

i want just to make them separated vertically

thank you for your help
  #6  
Old 04-10-2005, 09:00 PM
pb&j's Avatar
pb&j pb&j is offline
phantom
 
Join Date: Dec 2001
Location: lurking about
Posts: 9,998
pb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to all
try this...
<table cellspacing="20" height="100%"><tr><td width="20%" valign="top">

<!-- this is your left navigation table below, just fill in the insides again -->
<table width="100%" border="3" bgcolor="#fff8dc" height="100%">
</table>
<!-- end left navigation table -->

</td><td width="60%" valign="top">

<!-- this is your center contents table below, just fill in the insides again -->
<table bgcolor="white" width="100%" height="100%">
</table>
<!-- end main center contents table -->

</td><td width="20%" valign="top">

<!-- this is your right navigation table below, just fill in the insides again -->
<table width="100%" border="3" bgcolor="#fff8dc" height="100%">
</table>
<!-- end right navigation table -->

</td></tr></table>

the starting TABLE tag of your 3 current tables have been adjusted and fixed a bit. the 3 tables are now being contained by one larger table. the large table is one row, 3 cells. if you adjust the cellspacing number, that should work the way your want.
__________________
phantom of the forum! mwa-ha-ha!
  #7  
Old 04-10-2005, 10:11 PM
friendly37 friendly37 is offline
Script Kiddie
 
Join Date: Nov 2004
Posts: 100
friendly37 is on a distinguished road
thanks , but

hello

thank you very much for your help.

just one thing, there is a space on the top of the left and right tables. is there a way to take it off?

thank you very much
  #8  
Old 04-11-2005, 07:59 AM
pb&j's Avatar
pb&j pb&j is offline
phantom
 
Join Date: Dec 2001
Location: lurking about
Posts: 9,998
pb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to all
like this?

<table cellspacing="0" cellpadding="0" height="100%" border="0"><tr><td width="20%" valign="top">

<!-- this is your left navigation table below, just fill in the insides again -->
<table width="100%" border="3" bgcolor="#fff8dc" height="100%">
<tr><td valign="top">test</td></tr>
</table>
<!-- end left navigation table -->

</td><td width="60%" valign="top">

<!-- this is your center contents table below, just fill in the insides again -->
<table bgcolor="white" width="100%" height="100%" cellpadding="10">
<tr><td valign="top">test</td></tr>
</table>
<!-- end main center contents table -->

</td><td width="20%" valign="top">

<!-- this is your right navigation table below, just fill in the insides again -->
<table width="100%" border="3" bgcolor="#fff8dc" height="100%">
<tr><td valign="top">test</td></tr>
</table>
<!-- end right navigation table -->

</td></tr></table>
__________________
phantom of the forum! mwa-ha-ha!
  #9  
Old 04-12-2005, 05:16 PM
friendly37 friendly37 is offline
Script Kiddie
 
Join Date: Nov 2004
Posts: 100
friendly37 is on a distinguished road
includes

hello

I want now to put the left tale as includes ssi. so what codes of the left table should I put in the text file.


i have taken the the left table codes beginning with <table> bla bla bla </table>

but the result gives me that this left table is out of the big table and positioned on the top.

so I know there ia something wrong.

thank you
  #10  
Old 04-12-2005, 05:45 PM
pb&j's Avatar
pb&j pb&j is offline
phantom
 
Join Date: Dec 2001
Location: lurking about
Posts: 9,998
pb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to allpb&j is a name known to all
you may have taken out the wrong portion or placed the include in the wrong spot.

<table cellspacing="0" cellpadding="0" height="100%" border="0"><tr><td width="20%" valign="top">

<!-- this is your left navigation table below, just fill in the insides again -->
<table width="100%" border="3" bgcolor="#fff8dc" height="100%">
<tr><td valign="top">test</td></tr>
</table>
<!-- end left navigation table -->

</td><td width="60%" valign="top">

<!-- this is your center contents table below, just fill in the insides again -->
<table bgcolor="white" width="100%" height="100%" cellpadding="10">
<tr><td valign="top">test</td></tr>
</table>
<!-- end main center contents table -->

</td><td width="20%" valign="top">

<!-- this is your right navigation table below, just fill in the insides again -->
<table width="100%" border="3" bgcolor="#fff8dc" height="100%">
<tr><td valign="top">test</td></tr>
</table>
<!-- end right navigation table -->

</td></tr></table>

take out the red part and put it onto its own page.
now in that space you just created by taking out the red part, type in the coding for your include tag.
__________________
phantom of the forum! mwa-ha-ha!
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:03 PM.


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.