Gossamer Forum
Home : General : Chit Chat :

Advanced tables...

Quote Reply
Advanced tables...
I'm wondering if anyone could explain to get cell borders to appear if the table's border is set to 0. Here is an example of what I would like to achieve: http://www.larrykaimer.com/...aspx?listingid=17563 , notice the three tabs (detailed view, photo gallery, view rooms)... the thin black border. If you could show me some example code, I'm sure that I can figure it out, HTML or CSS versions.
Quote Reply
Re: [Unquick] Advanced tables... In reply to
I figure its done with advanced css.

Code:
.SubTitleCell {
background-color: #ebebeb;
text-align:center;
border-left: #ffffff 2px outset;
border-bottom:#000000 1px outset;
border-right: #000000 1px outset;
border-top: #ffffff 2px outset;
}

or something like that code.

chmod
Quote Reply
Re: [Unquick] Advanced tables... In reply to
...or to add the code directly into your TD cell, use:

style="border-left: #ffffff 2px outset;"

...etc.
Quote Reply
Re: [Paul] Advanced tables... In reply to
Very cool guys!!! IT WORKS!! I've been going nuts trying to figure this out.

Thanks