Putting a bold grid header into my table.

Tim Field

Newcomer
Joined
Aug 31, 2005
Messages
20
Hi all,

I'm trying to do the following in xslt.
:confused:

The "line" under surname is what I'm after.

------------------
-Surname -
------------------
- Jones -
- Smith -
- Thornton -
- Field -
-------------------

This is my table so far but what do I add to get it to do this?



TABLE.tblmain
{
border-style: solid;
border-width: 1px 1px 1px 1px;
border-style: solid;
border-color: #99CCCC;
padding: 4px 6px;
text-align: left;
font-family:Tahoma,Arial;
font-size:9pt;
}

Thanks! Tim
 
Assuming your Header uses TH you can try something like this:
Code:
TH {border-bottom: 1px solid #99CCCC;}

Otherwise just give the heading a separate class name and chage the Style definition from TH to what ever new class you set up.
 
Back
Top