Re: Cell spacing in a style***



Hi,

Your suggestion is not quite working considering I've got a table
inside a table. Let me explain better.

Outside table is:
<table width="780" cellpadding="0" cellspacing="0" class="content">
with one tr with one td in it
..content {
background-image: url(img/butterflybackground.jpg);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: right bottom;
border: 15px white solid;
}
Then, there are two inside tables below this first tr td (each in their
own tr and td) and each of the tables have three tds in one tr. The
total number of cells is seven, like this:
cell
cell cell cell
cell cell cell
Inside tables are:
<table align="center" border="0" cellpadding-left="15"
cellpadding-right="15" cellspacing="0" class="contentinsidetable">
..contentinsidetable {
background-color: #ffffff;
font-family: Verdana, Arial, Helvetica;
font-size: 8pt;
border: 0;
color: #222222;
}
You probably wonder why I don't have one inside table. It's because
there is a title above the second one that has to line up with the
titles in the outside table and that's the only way I could get it to
do it.

So here is my problem. I'm trying to get the inside tables to line up
nicely with the outside and have no extra spaces above and below, but
whenever I do that the three cells across have no space between them
and the text runs together.

What is the best way to accomplish this?

Thanks again for all your help,

Michele

.