I have been struggling with the Table Style of my CSS for quite awhile now. I am hoping the RoboHelp Community can help me resolve my final issue. I've created a table with all 1px lines, but my top row keeps doubling up the rows. It doesn't seem like any changes to vertical lines for the top row impact it positively. Please let m know if you've had additional problems. I'm including the table shot and code for the CSS.
Thanks in advance for your help!
table.table_template {
padding: 0px;
border-top: Solid 1px #000000;
border-left: Solid 1px #000000;
x-border-spacing: 0px;
x-row-pat-1: 1;
x-row-pat-1-name: t1Row;
x-row-pat-count: 2;
x-row-pat-2: 1;
x-row-pat-2-name: t2Row;
x-1st-row: 1;
x-1st-row-name: t1st;
x-1st-col: 1;
x-1st-col-name: t1st;
border-bottom-style: Solid;
border-bottom-width: 0px;
border-bottom-color: #000000;
border-right-style: Solid;
border-right-width: 0px;
border-right-color: #000000;
border-left-style: Solid;
border-left-width: 0px;
border-left-color: #000000;
border-top-style: Solid;
border-top-width: 0px;
border-top-color: #000000;
}
table.table_template td {
padding-left: 10px;
padding-right: 10px;
padding-top: 1px;
padding-bottom: 1px;
}
table.table_template tr.t1Row td {
border-right-style: Solid;
border-right-width: 1px;
border-right-color: #000000;
border-bottom-style: Solid;
border-bottom-width: 1px;
border-bottom-color: #000000;
font-family: Arial;
font-size: 10pt;
background-color: #e6ecf0;
}
table.table_template tr.t2Row td {
border-right-style: Solid;
border-right-width: 1px;
border-right-color: #000000;
border-bottom-style: Solid;
border-bottom-width: 1px;
border-bottom-color: #000000;
font-family: Arial;
font-size: 10pt;
background-color: #ffffff;
}
table.table_template tr.t1st td {
font-size: 10pt;
font-family: Arial;
font-weight: bold;
color: #ffffff;
background-color: #3f5f72;
border-left-style: Solid;
border-left-width: 1px;
border-left-color: #000000;
border-right-style: Solid;
border-right-width: 1px;
border-right-color: #000000;
border-top-style: Solid;
border-top-width: 1px;
border-top-color: #000000;
border-bottom-style: Solid;
border-bottom-width: 1px;
border-bottom-color: #000000;
}
table.table_template tr.t1Row td.t1st {
font-family: Arial;
font-size: 10pt;
font-weight: bold;
border-top-style: Solid;
border-top-width: 0px;
border-top-color: #000000;
border-left-style: Solid;
border-left-width: 1px;
border-left-color: #000000;
}
table.table_template tr.t2Row td.t1st {
font-family: Arial;
font-size: 10pt;
font-weight: bold;
border-top-style: Solid;
border-top-width: 0px;
border-top-color: #000000;
border-left-style: Solid;
border-left-width: 1px;
border-left-color: #000000;
}
table.table_template td.t1st {
font-family: Arial;
font-size: 10pt;
font-weight: bold;
border-top-style: Solid;
border-top-width: 0px;
border-top-color: #000000;
border-left-style: Solid;
border-left-width: 1px;
border-left-color: #000000;
}