Forum Moderators: not2easy

Message Too Old, No Replies

table borders

         

derawyn

4:49 pm on Mar 29, 2006 (gmt 0)

10+ Year Member



Hi all. New here.

Okay I am trying to create just a top border and bpottom border on 1 table. There is 3. So not the first table but the second table and the third no border. I have been trying a million things in my external css. How can I possibly do this?

Thanks
Derawyn

Kufu

4:53 pm on Mar 29, 2006 (gmt 0)

10+ Year Member



I'm can't picture what you are describing, but from what I can gather you may be looking for something like:

.table_border
{
border-top:1px #000000;
border-bottom:1px #000000;
}

derawyn

4:57 pm on Mar 29, 2006 (gmt 0)

10+ Year Member



okay yes but if I just add that it adds it too the main table which is 100%. The second table contains the inner table webset template. I want just a table on left and right for the table outside the template table? Make sense?

okay this is how I have it now which adds borders to all tables left and right.

table {
border-left: 1px solid #ffffff;
border-right: 1px solid #ffffff;

}

[digitaltoile.com...]

I want just around the center table left and right

Thanks
Derawyn

derawyn

5:26 pm on Mar 29, 2006 (gmt 0)

10+ Year Member



I figured it out

table#1 {
border-left: 0px solid #ffffff;
border-right: 0px solid #ffffff;

}

table#2 {
border-left: 1px solid #ffffff;
border-right: 1px solid #ffffff;

}


table#3 {
border-left: 0px solid #ffffff;
border-right: 0px solid #ffffff;

}

table#1 {
border-left: 0px solid #ffffff;
border-right: 0px solid #ffffff;

}

did the trick.

Thanks for the reply
Derawyn