Hi,
I have a problem with my table I can’t seem to figure out.
div#content table#ticketTable {
width: 960px;
margin-top: 10px;
border: 1px solid #999;
table-layout:fixed;
}
table#ticketTable thead tr {
background-color:#FF9900;
color: #fff;
font-weight: bold;
border: 1px solid #999;
}
table#ticketTable thead tr td {
padding: 5px;
}
table#ticketTable tbody tr {
border: 1px solid #999;
border-top: 0;
padding: 5px;
}
table#ticketTable tbody tr.headRow {
background-color:#ebebeb;
}
table#ticketTable tbody tr td {
padding: 8px;
}
table#ticketTable tbody tr td#twentyfive {
width: 240px;
}
<table id="ticketTable">
<thead>
<tr>
<td colspan="2">Ticket Details</td>
</tr>
</thead>
<tbody>
<tr>
<td id="twentyfive">
<span>Ticket ID:</span>
</td>
<td>
'.$ticketInfo['ticketID'].'
</td>
</tr>
The problem I have is “twentyfive” is still defaulting to 50% of the table. It’s probably something small, but am I missing something here?
Cheers,
Rhys